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:
Dan Williams 2008-02-12 20:22:20 +00:00
parent 6130a4f6b8
commit 9f7149568e
2 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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) {