aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>1997-03-25 14:31:31 +0000
committerWolfram Schneider <wosch@FreeBSD.org>1997-03-25 14:31:31 +0000
commitd05c3da950d43c7569898b5c22f46428f918c397 (patch)
treeaf95ac8eb40427cee4af4a1d9af949ef0e33a89a /usr.bin
parentc573e9ed49ef24d8d084d53ce6b719876783494f (diff)
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/uudecode/uudecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/uudecode/uudecode.c b/usr.bin/uudecode/uudecode.c
index d3fef7aee120..ebe283227610 100644
--- a/usr.bin/uudecode/uudecode.c
+++ b/usr.bin/uudecode/uudecode.c
@@ -199,7 +199,7 @@ decode2(flag)
return(1);
}
#define DEC(c) (((c) - ' ') & 077) /* single character decode */
-#define IS_DEC(c) ( (((c) - ' ') > 0) && (((c) - ' ') <= 077 + 1) )
+#define IS_DEC(c) ( (((c) - ' ') >= 0) && (((c) - ' ') <= 077 + 1) )
/* #define IS_DEC(c) (1) */
#define OUT_OF_RANGE \