From: Zhang Shengju Date: Thu, 13 Aug 2015 06:41:50 +0000 (+0000) Subject: ip-link: enhance prompt message X-Git-Tag: v4.2.0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff1e35edf521ea3a74f457674c7f020b52000882;p=thirdparty%2Fiproute2.git ip-link: enhance prompt message Enhance promtp message for 'spoofchk' and 'query_rss' flag, and fix a typo. Signed-off-by: Zhang Shengju --- diff --git a/ip/iplink.c b/ip/iplink.c index 18368896c..520f7508e 100644 --- a/ip/iplink.c +++ b/ip/iplink.c @@ -329,7 +329,7 @@ static int iplink_parse_vf(int vf, int *argcp, char ***argvp, else if (matches(*argv, "off") == 0) ivs.setting = 0; else - invarg("Invalid \"spoofchk\" value\n", *argv); + return on_off("spoofchk", *argv); ivs.vf = vf; addattr_l(&req->n, sizeof(*req), IFLA_VF_SPOOFCHK, &ivs, sizeof(ivs)); @@ -341,7 +341,7 @@ static int iplink_parse_vf(int vf, int *argcp, char ***argvp, else if (matches(*argv, "off") == 0) ivs.setting = 0; else - invarg("Invalid \"query_rss\" value\n", *argv); + return on_off("query_rss", *argv); ivs.vf = vf; addattr_l(&req->n, sizeof(*req), IFLA_VF_RSS_QUERY_EN, &ivs, sizeof(ivs)); @@ -1092,7 +1092,7 @@ static int do_set(int argc, char **argv) } else if (strcmp(*argv, "off") == 0) { flags |= IFF_NOARP; } else - return on_off("noarp", *argv); + return on_off("arp", *argv); } else if (matches(*argv, "dynamic") == 0) { NEXT_ARG(); mask |= IFF_DYNAMIC;