diff options
author | Denys Vlasenko | 2018-04-15 12:57:32 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-04-15 12:58:15 +0200 |
commit | 4b6091f92c1c5abfe4597af4f3f6fa266ac46a5a (patch) | |
tree | c9e06e11825e472e3af4fa857fc44a66b096d0e9 /networking | |
parent | 6cdc3195a6d174363a813d58b8372f0f5cd546b1 (diff) | |
download | busybox-4b6091f92c1c5abfe4597af4f3f6fa266ac46a5a.zip busybox-4b6091f92c1c5abfe4597af4f3f6fa266ac46a5a.tar.gz |
nslookup: accept lowercase -type=soa, document query types
Usage: nslookup [-type=QUERY_TYPE] [-debug] HOST [DNS_SERVER]
Query DNS about HOST
QUERY_TYPE: soa,ns,a,aaaa,cname,mx,txt,ptr,any
function old new delta
packed_usage 32189 32258 +69
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/nslookup.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/networking/nslookup.c b/networking/nslookup.c index 63bb46b..88a638a 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c @@ -24,7 +24,8 @@ //usage: IF_FEATURE_NSLOOKUP_BIG("[-type=QUERY_TYPE] [-debug] ") "HOST [DNS_SERVER]" //usage:#define nslookup_full_usage "\n\n" //usage: "Query DNS about HOST" -//usage: +//usage: IF_FEATURE_NSLOOKUP_BIG("\n") +//usage: IF_FEATURE_NSLOOKUP_BIG("\nQUERY_TYPE: soa,ns,a,"IF_FEATURE_IPV6("aaaa,")"cname,mx,txt,ptr,any") //usage:#define nslookup_example_usage //usage: "$ nslookup localhost\n" //usage: "Server: default\n" @@ -816,7 +817,7 @@ int nslookup_main(int argc UNUSED_PARAM, char **argv) for (i = 0;; i++) { if (i == ARRAY_SIZE(qtypes)) bb_error_msg_and_die("invalid query type \"%s\"", val); - if (strcmp(qtypes[i].name, val) == 0) + if (strcasecmp(qtypes[i].name, val) == 0) break; } types |= (1 << i); |