diff options
author | Warner Losh <imp@FreeBSD.org> | 1997-03-29 04:34:07 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 1997-03-29 04:34:07 +0000 |
commit | 1c8af8787354e20c2b38cab5801698133ff8b403 (patch) | |
tree | 678b7641c05ca5dc27c06cac1210b2a7712335a9 /usr.bin/uudecode | |
parent | 8d64695c7c6791641c71b15441665bafc43c2bd0 (diff) | |
download | src-test2-1c8af8787354e20c2b38cab5801698133ff8b403.tar.gz src-test2-1c8af8787354e20c2b38cab5801698133ff8b403.zip |
Notes
Diffstat (limited to 'usr.bin/uudecode')
-rw-r--r-- | usr.bin/uudecode/uudecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/uudecode/uudecode.c b/usr.bin/uudecode/uudecode.c index ebe283227610..1667e01561c5 100644 --- a/usr.bin/uudecode/uudecode.c +++ b/usr.bin/uudecode/uudecode.c @@ -73,7 +73,7 @@ main(argc, argv) extern int errno; int rval, ch; - while ((ch = getopt(argc, argv, "cp")) != EOF) { + while ((ch = getopt(argc, argv, "cp")) != -1) { switch(ch) { case 'c': cflag = 1; /* multiple uudecode'd files */ |