Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Sep 2002 12:04:26 +0900
From:      Kimura Fuyuki <fuyuki@hadaly.org>
To:        mike@FreeBSD.ORG
Cc:        fanf@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject:   Re: cvs commit: src/usr.bin/uudecode uudecode.c
Message-ID:  <86ptvlw7k5.wl@hadaly.dyndns.org>
In-Reply-To: <20020910224200.A73565@espresso.q9media.com>
References:  <200209110100.g8B10uuh023018@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
At Tue, 10 Sep 2002 22:42:00 -0400,
Mike Barcroft <mike@FreeBSD.ORG> wrote:
> 
> Mike Barcroft <mike@FreeBSD.org> writes:
> > mike        2002/09/10 18:00:56 PDT
> > 
> >   Modified files:
> >     usr.bin/uudecode     uudecode.c 
> >   Log:
> >   Unbreak world by fixing 4 syntax errors and 1 wrong variable type.
> >   
> >   Revision  Changes    Path
> >   1.39      +5 -5      src/usr.bin/uudecode/uudecode.c
> 
> Unfortunately this isn't enough to fix world:
> ===> share/tabset
> uudecode < /work/src/share/tabset/3101.uu
> uudecode < /work/src/share/tabset/9837.uu
> uudecode: stdin: 9837: character out of range: [33-96]

`n' can be minus...

Index: uudecode.c
===================================================================
RCS file: /home/ncvs/src/usr.bin/uudecode/uudecode.c,v
retrieving revision 1.39
diff -u -r1.39 uudecode.c
--- uudecode.c	11 Sep 2002 01:00:56 -0000	1.39
+++ uudecode.c	11 Sep 2002 02:59:47 -0000
@@ -153,7 +153,7 @@
 decode2(void)
 {
 	int base64;
-	size_t n;
+	int n;
 	char ch, *p, *q;
 	void *mode;
 	struct passwd *pw;

-- fuyuki


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86ptvlw7k5.wl>