* kvno.M: Update usage
authorTom Yu <tlyu@mit.edu>
Tue, 31 Aug 2004 22:06:26 +0000 (22:06 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 31 Aug 2004 22:06:26 +0000 (22:06 +0000)
* kvno.c (xusage): Update usage message.

ticket: 2677

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

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

index 7e99fe9b05c54ae54c4224b6688ea3739e92fb2b..0a81427ff3f500924e86900cc757fe04a503d79e 100644 (file)
@@ -1,3 +1,9 @@
+2004-08-31  Tom Yu  <tlyu@mit.edu>
+
+       * kvno.M: Update usage.
+
+       * kvno.c (xusage): Update usage message.
+
 2004-08-20  Jeffrey Altman <jaltman@mit.edu>
 
         * kvno.c: Add -c ccache command line option
index e7c99f7c59efe530830d0c660bc1c88b40070a8f..864f75ec2cfd3de03f150c25f941290e3e3b868b 100644 (file)
@@ -28,7 +28,7 @@
 .SH NAME
 kvno \- print key version numbers of Kerberos principals
 .SH SYNOPSIS
-\fBkvno\fP [\fB\-q\fP] [\fB\-h\fP] [\fB\-4\fP] [\fB\-e etype\fP] 
+\fBkvno\fP [\fB\-q\fP] [\fB\-h\fP] [\fB\-4\fP\ |\ [\fB-c ccache\fP]\ [\fB\-e etype\fP]]
 \fBservice1\fP \fBservice2\fP \fB...\fP
 .br
 .SH DESCRIPTION
@@ -37,7 +37,10 @@ acquires a service ticket for the specified Kerberos principals and
 prints out the key version numbers of each.  
 .SH OPTIONS
 .TP
-.B \-e
+.B \-c ccache
+specifies the name of a credentials cache to use (if not the default)
+.TP
+.B \-e etype
 specifies the enctype which will be requested for the session key of
 all the services named on the command line.  This is useful in certain
 backward compatibility situations.
index 71fbcde8a1acd71aec59784919b062e4f57e1ff4..c860eb7d427d5654eaccc90d12e5d00d61c74a9e 100644 (file)
@@ -40,10 +40,10 @@ static void xusage()
 {
 #ifdef KRB5_KRB4_COMPAT
     fprintf(stderr, 
-            "xusage: %s [-4 | -c ccache -e etype] service1 service2 ...\n", 
+            "usage: %s [-4 | [-c ccache] [-e etype]] service1 service2 ...\n", 
             prog);
 #else
-    fprintf(stderr, "xusage: %s [-c ccache -e etype] service1 service2 ...\n",
+    fprintf(stderr, "usage: %s [-c ccache] [-e etype] service1 service2 ...\n",
             prog);
 #endif
     exit(1);