aboutsummaryrefslogtreecommitdiff
path: root/src/appl/gssftp/ftp/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/appl/gssftp/ftp/main.c')
-rw-r--r--src/appl/gssftp/ftp/main.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/appl/gssftp/ftp/main.c b/src/appl/gssftp/ftp/main.c
index 685c147..aa6e5a4 100644
--- a/src/appl/gssftp/ftp/main.c
+++ b/src/appl/gssftp/ftp/main.c
@@ -86,6 +86,7 @@ main(argc, argv)
int top;
struct passwd *pw = NULL;
char homedir[MAXPATHLEN];
+ char *progname = argv[0];
sp = getservbyname("ftp", "tcp");
if (sp == 0) {
@@ -147,10 +148,9 @@ main(argc, argv)
doglob = 0;
break;
-
case 'u':
- autoauth = 0;
- break;
+ autoauth = 0;
+ break;
case 'f':
forward = 1;
@@ -160,11 +160,13 @@ main(argc, argv)
autoencrypt = 1;
break;
-
default:
- fprintf(stdout,
+ fprintf(stderr,
"ftp: %c: unknown option\n", *cp);
- exit(1);
+ fprintf(stderr, "Usage: %s [-v] [-d] [-i] [-n] [-g] "
+ "[-k realm] [-f] [-x] [-u] [-t] [host]\n",
+ progname);
+ exit(1);
}
nextopt:
argc--, argv++;