Module Name: src
Committed By: sevan
Date: Sun Mar 1 02:26:16 UTC 2020
Modified Files:
src/usr.bin/whois: whois.c
Log Message:
Order caps first
To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/usr.bin/whois/whois.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/whois/whois.c
diff -u src/usr.bin/whois/whois.c:1.37 src/usr.bin/whois/whois.c:1.38
--- src/usr.bin/whois/whois.c:1.37 Sun Mar 1 02:19:43 2020
+++ src/usr.bin/whois/whois.c Sun Mar 1 02:26:16 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: whois.c,v 1.37 2020/03/01 02:19:43 sevan Exp $ */
+/* $NetBSD: whois.c,v 1.38 2020/03/01 02:26:16 sevan Exp $ */
/* $OpenBSD: whois.c,v 1.58 2018/06/19 11:28:11 jca Exp $ */
/*
@@ -41,7 +41,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 19
#if 0
static const char sccsid[] = "@(#)whois.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: whois.c,v 1.37 2020/03/01 02:19:43 sevan Exp $");
+__RCSID("$NetBSD: whois.c,v 1.38 2020/03/01 02:26:16 sevan Exp $");
#endif
#endif /* not lint */
@@ -99,7 +99,7 @@ main(int argc, char *argv[])
country = host = NULL;
flags = rval = 0;
- while ((ch = getopt(argc, argv, "aAc:dfgh:Iilmp:PqQRr")) != -1)
+ while ((ch = getopt(argc, argv, "Aac:dfgh:Iilmp:PqQRr")) != -1)
switch (ch) {
case 'a':
host = ANICHOST;