From d45f1ca30578339d50403a6d4217810871b32acf Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 10 May 2005 14:38:57 +0000 Subject: [PATCH] 2005-05-10 Dan Williams * gnome/applet/applet-dbus-device.c - (nmwa_dbus_set_device): remove check for valid key and key type, which prevented just entering ESSID and leaving key and key type up to NetworkManager (which should have them already cached) git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@617 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 7 +++++++ gnome/applet/applet-dbus-devices.c | 3 --- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e9fb09f144..3f9ed9ce11 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-05-10 Dan Williams + + * gnome/applet/applet-dbus-device.c + - (nmwa_dbus_set_device): remove check for valid key and key type, which + prevented just entering ESSID and leaving key and key type up to + NetworkManager (which should have them already cached) + 2005-05-08 Dan Williams * src/NetworkManagerPolicy.c diff --git a/gnome/applet/applet-dbus-devices.c b/gnome/applet/applet-dbus-devices.c index 753674e1d9..bd115af08e 100644 --- a/gnome/applet/applet-dbus-devices.c +++ b/gnome/applet/applet-dbus-devices.c @@ -1057,9 +1057,6 @@ void nmwa_dbus_set_device (DBusConnection *connection, NetworkDevice *dev, const g_return_if_fail (connection != NULL); g_return_if_fail (dev != NULL); - if (network_device_is_wireless (dev) && !passphrase && (key_type != -1)) - return; - if ((message = dbus_message_new_method_call (NM_DBUS_SERVICE, NM_DBUS_PATH, NM_DBUS_INTERFACE, "setActiveDevice"))) { const char *dev_path = network_device_get_nm_path (dev);