n -> number, s -> string

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2453 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-07-19 01:18:42 +00:00
parent 3daaa8484a
commit 48ef709a3f

View File

@@ -61,9 +61,9 @@ print_arg (int longp, struct getargs *arg)
if (arg->arg_help)
s = arg->arg_help;
else if (arg->type == arg_integer)
s = "n";
s = "number";
else if (arg->type == arg_string)
s = "s";
s = "string";
fprintf (stderr, "%s", s);
return 1 + strlen(s);