summaryrefslogtreecommitdiffstats
path: root/src/appl
diff options
context:
space:
mode:
Diffstat (limited to 'src/appl')
-rw-r--r--src/appl/gss-sample/ChangeLog4
-rw-r--r--src/appl/gss-sample/README3
-rw-r--r--src/appl/gss-sample/gss-client.c1
3 files changed, 7 insertions, 1 deletions
diff --git a/src/appl/gss-sample/ChangeLog b/src/appl/gss-sample/ChangeLog
index 04bdc4737..01b2d975f 100644
--- a/src/appl/gss-sample/ChangeLog
+++ b/src/appl/gss-sample/ChangeLog
@@ -1,5 +1,9 @@
2004-02-06 Jeffrey Altman <jaltman@mit.edu>
+ * Update usage() for gss-client
+
+2004-02-06 Jeffrey Altman <jaltman@mit.edu>
+
* Add new command line switches to the gss-client
to support the use of GSS_C_SEQUENCE_FLAG or to
disable the use of either GSS_C_MUTUAL_FLAG or
diff --git a/src/appl/gss-sample/README b/src/appl/gss-sample/README
index 85232aff4..dc51fca1b 100644
--- a/src/appl/gss-sample/README
+++ b/src/appl/gss-sample/README
@@ -84,7 +84,8 @@ is used). The command-line options have the following meanings:
The client's command line usage is
gss-client [-port port] [-mech mechanism] [-d] [-f] [-q]
- [-ccount count] [-mcount count] [-na] [-nw] [-nx] [-nm]
+ [-seq] [-noreplay] [-nomutual]
+ [-ccount count] [-mcount count] [-na] [-nw] [-nx] [-nm]
host service_name msg
where host is the host running the server, service_name is the service
diff --git a/src/appl/gss-sample/gss-client.c b/src/appl/gss-sample/gss-client.c
index 898d0f8b6..c3fce2db1 100644
--- a/src/appl/gss-sample/gss-client.c
+++ b/src/appl/gss-sample/gss-client.c
@@ -46,6 +46,7 @@ static int verbose = 1;
static void usage()
{
fprintf(stderr, "Usage: gss-client [-port port] [-mech mechanism] [-d]\n");
+ fprintf(stderr, " [-seq] [-noreplay] [-nomutual]\n");
fprintf(stderr, " [-f] [-q] [-ccount count] [-mcount count]\n");
fprintf(stderr, " [-v1] [-na] [-nw] [-nx] [-nm] host service msg\n");
exit(1);