sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 136f2f3b6061d28565b2d9a603855fed9c2cac91
parent 71461978f24e0e56084c55ae87f4762e02e62c91
Author: sin <sin@2f30.org>
Date:   Tue,  4 Feb 2014 15:19:02 +0000

Correct error message in uudecode(1)

Diffstat:
Muudecode.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/uudecode.c b/uudecode.c @@ -204,5 +204,5 @@ uudecode(FILE *fp, FILE *outfp) /* check for end or fail */ afgets(&bufb, &n, fp); if (strnlen(bufb, 3) < 3 || strncmp(bufb, "end", 3) != 0 || bufb[3] != '\n') - eprintf("valid uudecode footer \"end\" not found\n"); + eprintf("invalid uudecode footer \"end\" not found\n"); }