mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-03 21:50:27 +01:00
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:
parent
c6a263bd84
commit
a629f4cbc8
2 changed files with 12 additions and 4 deletions
|
|
@ -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>
|
||||
|
||||
* gnome/applet/other-network-dialog.c:
|
||||
|
|
|
|||
|
|
@ -531,6 +531,8 @@ void* nm_system_device_get_system_config (NMDevice *dev)
|
|||
sys_data->use_dhcp = FALSE;
|
||||
}
|
||||
|
||||
sys_data->config = nm_ip4_config_new ();
|
||||
|
||||
buf = ifparser_getkey (curr_device, "address");
|
||||
if (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
|
||||
nm_debug ("------ Config (%s)", nm_device_get_iface (dev));
|
||||
nm_debug (" DHCP=%d\n", use_dhcp);
|
||||
nm_debug (" ADDR=%d\n", ip4_address);
|
||||
nm_debug (" GW=%d\n", ip4_gateway);
|
||||
nm_debug (" NM=%d\n", ip4_netmask);
|
||||
nm_debug (" DHCP=%s\n", sys_data->use_dhcp);
|
||||
nm_debug (" ADDR=%d\n", nm_ip4_config_get_address (sys_data->config));
|
||||
nm_debug (" GW=%d\n", nm_ip4_config_get_gateway (sys_data->config));
|
||||
nm_debug (" NM=%d\n", nm_ip4_config_get_netmask (sys_data->config));
|
||||
nm_debug ("---------------------\n");
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue