diff options
| author | Tony Finch <fanf@FreeBSD.org> | 2003-03-04 21:22:05 +0000 |
|---|---|---|
| committer | Tony Finch <fanf@FreeBSD.org> | 2003-03-04 21:22:05 +0000 |
| commit | 4364d4c485bdad4d67da57dbfe79fb994ca177fe (patch) | |
| tree | 1e04dfbaa8cb2bd7302d6a07c56cac24564f03c6 /usr.bin | |
| parent | 263067951a1029407b1168b41d4f5757228d22dc (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -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 c28208a8bedb..88ef4551b2d7 100644 --- a/usr.bin/uudecode/uudecode.c +++ b/usr.bin/uudecode/uudecode.c @@ -308,7 +308,7 @@ getline(char *buf, size_t size) { if (fgets(buf, size, infp) != NULL) return (2); - if (!rflag) + if (rflag) return (0); warnx("%s: %s: short file", infile, outfile); return (1); |
