X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fifconfig.c;h=953499af63f534b66d5d2ae869d9a996d9d50935;hp=4331f16d5f74bb2c2dde49901d93fc659d01e286;hb=a08860ff8c2ad859836ed51c5629d6a85343e802;hpb=6d0452896673c36226c24144d4bde824a49c3950 diff --git a/src/ifconfig.c b/src/ifconfig.c index 4331f16d..953499af 100644 --- a/src/ifconfig.c +++ b/src/ifconfig.c @@ -120,15 +120,16 @@ void ifconfig_address(FILE *out, const char *value) { void ifconfig_route(FILE *out, const char *value) { subnet_t subnet = {}, gateway = {}; char subnet_str[MAXNETSTR] = "", gateway_str[MAXNETSTR] = ""; - const char *sep = strchr(value, ' '); + char *sep = strchr(value, ' '); + if(sep) + *sep++ = 0; if(!str2net(&subnet, value) || !net2str(subnet_str, sizeof subnet_str, &subnet) || subnet.type == SUBNET_MAC) { - fprintf(stderr, "Could not parse Ifconfig statement\n"); + fprintf(stderr, "Could not parse subnet in Route statement\n"); return; } if(sep) { - sep++; if(!str2net(&gateway, sep) || !net2str(gateway_str, sizeof gateway_str, &gateway) || gateway.type != subnet.type) { - fprintf(stderr, "Could not parse Ifconfig statement\n"); + fprintf(stderr, "Could not parse gateway in Route statement\n"); return; } char *slash = strchr(gateway_str, '/'); if(slash) *slash = 0;