From 9960ddd14ecdd2b78ef471fa7d12f195cd143260 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Tue, 26 Nov 2002 17:42:31 +0000 Subject: [PATCH] remove plural form in help string git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11548 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/afsutil/afslog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appl/afsutil/afslog.c b/appl/afsutil/afslog.c index be2f423af..50b2084b7 100644 --- a/appl/afsutil/afslog.c +++ b/appl/afsutil/afslog.c @@ -57,8 +57,8 @@ static int unlog_flag; static int verbose; struct getargs args[] = { - { "cell", 'c', arg_strings, &cells, "cells to get tokens for", "cells" }, - { "file", 'p', arg_strings, &files, "files to get tokens for", "paths" }, + { "cell", 'c', arg_strings, &cells, "cells to get tokens for", "cell" }, + { "file", 'p', arg_strings, &files, "files to get tokens for", "path" }, { "realm", 'k', arg_string, &realm, "realm for afs cell", "realm" }, { "unlog", 'u', arg_flag, &unlog_flag, "remove tokens" }, #if 0 @@ -157,7 +157,7 @@ createuser (char *cell) static void usage(int ecode) { - arg_printusage(args, num_args, NULL, "[cell]... [path]..."); + arg_printusage(args, num_args, NULL, "[cell|path]..."); exit(ecode); }