]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
iproute: TYPE keyword is not optional, fix help text accordingly
authorPhil Sutter <phil@nwl.cc>
Wed, 2 Mar 2016 18:19:54 +0000 (19:19 +0100)
committerStephen Hemminger <stephen@networkplumber.org>
Wed, 2 Mar 2016 19:23:51 +0000 (11:23 -0800)
This is a bit pedantic, but brackets ([]) show optional values and since
TYPE must not become empty, they're not suited to surround the type
keyword choices. Use curly braces instead.

Also add some missing whitespace to the parameter list above.

Signed-off-by: Phil Sutter <phil@nwl.cc>
ip/iproute.c

index 051fc12d197eb66b064797f2aca6edc1073679d0..5b954478cfb7fd41096bcb25633ed9c1ade80753 100644 (file)
@@ -82,13 +82,13 @@ static void usage(void)
        fprintf(stderr, "FAMILY := [ inet | inet6 | ipx | dnet | mpls | bridge | link ]\n");
        fprintf(stderr, "OPTIONS := FLAGS [ mtu NUMBER ] [ advmss NUMBER ] [ as [ to ] ADDRESS ]\n");
        fprintf(stderr, "           [ rtt TIME ] [ rttvar TIME ] [ reordering NUMBER ]\n");
-       fprintf(stderr, "           [ window NUMBER] [ cwnd NUMBER ] [ initcwnd NUMBER ]\n");
+       fprintf(stderr, "           [ window NUMBER ] [ cwnd NUMBER ] [ initcwnd NUMBER ]\n");
        fprintf(stderr, "           [ ssthresh NUMBER ] [ realms REALM ] [ src ADDRESS ]\n");
        fprintf(stderr, "           [ rto_min TIME ] [ hoplimit NUMBER ] [ initrwnd NUMBER ]\n");
        fprintf(stderr, "           [ features FEATURES ] [ quickack BOOL ] [ congctl NAME ]\n");
        fprintf(stderr, "           [ pref PREF ] [ expires TIME ]\n");
-       fprintf(stderr, "TYPE := [ unicast | local | broadcast | multicast | throw |\n");
-       fprintf(stderr, "          unreachable | prohibit | blackhole | nat ]\n");
+       fprintf(stderr, "TYPE := { unicast | local | broadcast | multicast | throw |\n");
+       fprintf(stderr, "          unreachable | prohibit | blackhole | nat }\n");
        fprintf(stderr, "TABLE_ID := [ local | main | default | all | NUMBER ]\n");
        fprintf(stderr, "SCOPE := [ host | link | global | NUMBER ]\n");
        fprintf(stderr, "NHFLAGS := [ onlink | pervasive ]\n");