mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-03 00:00:14 +01:00
2004-08-25 Dan Williams <dcbw@redhat.com>
* panel-applet/NMWirelessApplet.c - Set ESSID on a gconf trusted network too when force-setting the wireless network to associate with git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@71 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
e09969112f
commit
7df00044ca
2 changed files with 11 additions and 0 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2004-08-25 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* panel-applet/NMWirelessApplet.c
|
||||
- Set ESSID on a gconf trusted network too when force-setting the wireless
|
||||
network to associate with
|
||||
|
||||
2004-08-25 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* panel-applet/*
|
||||
|
|
|
|||
|
|
@ -396,6 +396,11 @@ void nmwa_handle_network_choice (NMWirelessApplet *applet, char *network)
|
|||
key = g_strdup_printf ("%s/%s/timestamp", NM_GCONF_TRUSTED_NETWORKS_PATH, network);
|
||||
gconf_client_set_int (applet->gconf_client, key, time (NULL), NULL);
|
||||
g_free (key);
|
||||
|
||||
/* Force-set the essid too so that we have a semi-complete network entry */
|
||||
key = g_strdup_printf ("%s/%s/essid", NM_GCONF_TRUSTED_NETWORKS_PATH, network);
|
||||
gconf_client_set_string (applet->gconf_client, key, network, NULL);
|
||||
g_free (key);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue