From: Susant Sahani Date: Mon, 13 Jun 2016 13:57:17 +0000 (+0530) Subject: networkd: route priority replace parsing config_parse_uint32 with safe_atou32 (#3522) X-Git-Tag: v231~173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c4b11794bdf54480a69a55645e60d5996dcb454;p=thirdparty%2Fsystemd.git networkd: route priority replace parsing config_parse_uint32 with safe_atou32 (#3522) --- diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c index 52037f9c6d1..cedaf47cf8e 100644 --- a/src/network/networkd-route.c +++ b/src/network/networkd-route.c @@ -795,6 +795,7 @@ int config_parse_route_priority(const char *unit, void *userdata) { Network *network = userdata; _cleanup_route_free_ Route *n = NULL; + uint32_t k; int r; assert(filename); @@ -807,12 +808,14 @@ int config_parse_route_priority(const char *unit, if (r < 0) return r; - r = config_parse_uint32(unit, filename, line, section, - section_line, lvalue, ltype, - rvalue, &n->priority, userdata); - if (r < 0) - return r; + r = safe_atou32(rvalue, &k); + if (r < 0) { + log_syntax(unit, LOG_ERR, filename, line, r, + "Could not parse route priority \"%s\", ignoring assignment: %m", rvalue); + return 0; + } + n->priority = k; n = NULL; return 0;