chiark / gitweb /
networkd: fix several Address entries in [Network] section
authorTom Gundersen <teg@jklm.no>
Thu, 28 Nov 2013 16:17:04 +0000 (17:17 +0100)
committerTom Gundersen <teg@jklm.no>
Thu, 28 Nov 2013 16:17:04 +0000 (17:17 +0100)
src/network/networkd-address.c
src/network/networkd-route.c

index 0555d317a40549f86cbf501a11601ac1705be2c5..8f16a8c6c15851f9cb5b6c0a72f358d6c9881b6b 100644 (file)
@@ -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;
index 1166a99a79613fc6c5d348407fa8adac9bf7f0e8..1ea6237cc7e03f15eca7b639c3207d89e1c71997 100644 (file)
@@ -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;