From: Tom Gundersen Date: Thu, 28 Nov 2013 16:17:04 +0000 (+0100) Subject: networkd: fix several Address entries in [Network] section X-Git-Tag: v209~1249 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=92fe133abf2de889659464ae8affd1db1710f72e;hp=2a16a986ce5f1bdb7e96abfe14fcb9f34c9364b6 networkd: fix several Address entries in [Network] section --- diff --git a/src/network/networkd-address.c b/src/network/networkd-address.c index 0555d317a..8f16a8c6c 100644 --- a/src/network/networkd-address.c +++ b/src/network/networkd-address.c @@ -155,6 +155,12 @@ int config_parse_address(const char *unit, assert(rvalue); assert(data); + if (streq(section, "Network")) { + /* we are not in an Address section, so treat + * this as the special '0' section */ + section_line = 0; + } + r = address_new(network, section_line, &n); if (r < 0) return r; diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c index 1166a99a7..1ea6237cc 100644 --- a/src/network/networkd-route.c +++ b/src/network/networkd-route.c @@ -142,6 +142,12 @@ int config_parse_gateway(const char *unit, assert(rvalue); assert(data); + if (streq(section, "Network")) { + /* we are not in an Route section, so treat + * this as the special '0' section */ + section_line = 0; + } + r = route_new(network, section_line, &n); if (r < 0) return r;