* kvno.c (do_v4_kvno): If not compiling with v4 support, xusage
authorEzra Peisach <epeisach@mit.edu>
Tue, 30 Jul 2002 21:15:40 +0000 (21:15 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 30 Jul 2002 21:15:40 +0000 (21:15 +0000)
        does not take any arguments.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14672 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/kvno/ChangeLog
src/clients/kvno/kvno.c

index e87a80b3208cf74578df810d8621dc6b67eccbcf..77f1a2559bf7cb192f764542e931f2633b54b551 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-30  Ezra Peisach  <epeisach@bu.edu>
+
+       * kvno.c (do_v4_kvno): If not compiling with v4 support, xusage
+       does not take any arguments.
+
 2002-07-29  Jen Selby   <jenselby@mit.edu>
 
        * kvno.M: added documentation of the "-q" and "-h" options.
index 080e512e63cc80500b7f154e86b618eea79f376f..d007fa238d33ce192c2ea2d516083e0ccdb9c2ab 100644 (file)
@@ -34,7 +34,7 @@
 extern int optind;
 extern char *optarg;
 
-char *prog;
+static char *prog;
 
 static void xusage()
 {
@@ -136,7 +136,7 @@ static void do_v4_kvno (int count, char *names[])
            printf("%s: kvno = %d\n", names[i], creds.kvno);
     }
 #else
-    xusage(prog);
+    xusage();
 #endif
 }