From 5c2a514628fb67f243d77d4e3cc154abc851e581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Thu, 27 Dec 2012 13:51:17 +0100 Subject: [PATCH] Show where the options need to go in the usage output --- ex/q/q.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ex/q/q.go b/ex/q/q.go index e7f17369..b1314b88 100644 --- a/ex/q/q.go +++ b/ex/q/q.go @@ -43,7 +43,7 @@ func main() { client := flag.String("client", "", "set edns client-subnet option") //serial := flag.Int("serial", 0, "perform an IXFR with this serial") flag.Usage = func() { - fmt.Fprintf(os.Stderr, "Usage: %s [@server] [qtype] [qclass] [name ...]\n", os.Args[0]) + fmt.Fprintf(os.Stderr, "Usage: %s [options] [@server] [qtype] [qclass] [name ...]\n", os.Args[0]) flag.PrintDefaults() }