2004-07-19 Dan Williams <dcbw@redhat.com>

* dispatcher-daemon/NetworkManagerDispatcher.c
		- (nm_dbus_filter): Remove obsolete response to NeedKeyForNetwork signal


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@17 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2004-07-19 06:18:37 +00:00
parent aab500146f
commit 32587b0ba4
2 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2004-07-19 Dan Williams <dcbw@redhat.com>
* dispatcher-daemon/NetworkManagerDispatcher.c
- (nm_dbus_filter): Remove obsolete response to NeedKeyForNetwork signal
2004-07-19 Dan Williams <dcbw@redhat.com>
* Makefile.am

View file

@ -228,8 +228,6 @@ static DBusHandlerResult nmd_dbus_filter (DBusConnection *connection, DBusMessag
action = NMD_DEVICE_NOW_INACTIVE;
else if (dbus_message_is_signal (message, "org.freedesktop.NetworkManager", "DeviceNowActive"))
action = NMD_DEVICE_NOW_ACTIVE;
else if (dbus_message_is_signal (message, "org.freedesktop.NetworkManager", "NeedKeyForNetwork"))
fprintf (stderr, "NeedKeyForNetwork\n");
if (action != NMD_DEVICE_DONT_KNOW)
{
@ -408,8 +406,7 @@ int main( int argc, char *argv[] )
g_thread_init (NULL);
/* Connect to the NetworkManager dbus service and run the main loop */
connection = nmd_dbus_init ();
if (connection)
if ((connection = nmd_dbus_init ()))
{
loop = g_main_loop_new (NULL, FALSE);
g_main_loop_run (loop);