2005-08-22 Dan Williams <dcbw@redhat.com>

Patch from j@bootlab.org:
	* src/backends/NetworkManagerDebian.c
		- Make the Debian backend work for static IP again


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@895 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams
2005-08-22 20:22:27 +00:00
parent c6a263bd84
commit a629f4cbc8
2 changed files with 12 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2005-08-22 Dan Williams <dcbw@redhat.com>
Patch from j@bootlab.org:
* src/backends/NetworkManagerDebian.c
- Make the Debian backend work for static IP again
2005-08-20 Christopher Aillon <caillon@redhat.com> 2005-08-20 Christopher Aillon <caillon@redhat.com>
* gnome/applet/other-network-dialog.c: * gnome/applet/other-network-dialog.c:

View File

@@ -531,6 +531,8 @@ void* nm_system_device_get_system_config (NMDevice *dev)
sys_data->use_dhcp = FALSE; sys_data->use_dhcp = FALSE;
} }
sys_data->config = nm_ip4_config_new ();
buf = ifparser_getkey (curr_device, "address"); buf = ifparser_getkey (curr_device, "address");
if (buf) if (buf)
nm_ip4_config_set_address (sys_data->config, inet_addr (buf)); nm_ip4_config_set_address (sys_data->config, inet_addr (buf));
@@ -570,10 +572,10 @@ void* nm_system_device_get_system_config (NMDevice *dev)
#if 0 #if 0
nm_debug ("------ Config (%s)", nm_device_get_iface (dev)); nm_debug ("------ Config (%s)", nm_device_get_iface (dev));
nm_debug (" DHCP=%d\n", use_dhcp); nm_debug (" DHCP=%s\n", sys_data->use_dhcp);
nm_debug (" ADDR=%d\n", ip4_address); nm_debug (" ADDR=%d\n", nm_ip4_config_get_address (sys_data->config));
nm_debug (" GW=%d\n", ip4_gateway); nm_debug (" GW=%d\n", nm_ip4_config_get_gateway (sys_data->config));
nm_debug (" NM=%d\n", ip4_netmask); nm_debug (" NM=%d\n", nm_ip4_config_get_netmask (sys_data->config));
nm_debug ("---------------------\n"); nm_debug ("---------------------\n");
#endif #endif