mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 14:10:08 +01:00
2008-02-12 Dan Williams <dcbw@redhat.com>
* system-settings/plugins/ifcfg-fedora/parser.c - (make_ip4_setting): bring IPv4 setting handling more up to spec git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3311 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
6130a4f6b8
commit
9f7149568e
2 changed files with 6 additions and 6 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2008-02-12 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* system-settings/plugins/ifcfg-fedora/parser.c
|
||||
- (make_ip4_setting): bring IPv4 setting handling more up to spec
|
||||
|
||||
2008-02-12 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* libnm-util/nm-utils.c
|
||||
|
|
|
|||
|
|
@ -274,13 +274,8 @@ make_ip4_setting (shvarFile *ifcfg, GError **error)
|
|||
char *dir;
|
||||
|
||||
value = svGetValue (ifcfg, "BOOTPROTO");
|
||||
if (!value)
|
||||
return NULL;
|
||||
|
||||
if (!strcmp (value, "bootp") || !strcmp (value, "dhcp")) {
|
||||
if (value && (!strcmp (value, "bootp") || !strcmp (value, "dhcp")))
|
||||
manual = FALSE;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
value = svGetValue (ifcfg, "IPADDR");
|
||||
if (value) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue