diff options
author | David Greenman <dg@FreeBSD.org> | 1994-08-31 17:20:12 +0000 |
---|---|---|
committer | David Greenman <dg@FreeBSD.org> | 1994-08-31 17:20:12 +0000 |
commit | f114b8260c94f929968333dc9c405eea81adafd0 (patch) | |
tree | 8dbcdf770b4cb6ac47055d3ff63cdb5c12f408d3 /usr.bin/ftp | |
parent | ac47fce534728e8c0429c53657ab664df0c03bfd (diff) |
Notes
Diffstat (limited to 'usr.bin/ftp')
-rw-r--r-- | usr.bin/ftp/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index 37fa85ba27ed0..00ecadf110900 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -78,7 +78,7 @@ main(argc, argv) autologin = 1; while ((ch = getopt(argc, argv, "dgintv")) != EOF) { - switch (*cp) { + switch (ch) { case 'd': options |= SO_DEBUG; debug++; |