remove plural form in help string

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11548 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
2002-11-26 17:42:31 +00:00
parent cc299b65fc
commit 9960ddd14e

View File

@@ -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);
}