Date: Tue, 10 Sep 2002 21:29:50 -0700 From: Alfred Perlstein <bright@mu.org> To: Kimura Fuyuki <fuyuki@hadaly.org> Cc: mike@FreeBSD.ORG, fanf@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/uudecode uudecode.c Message-ID: <20020911042950.GA21806@elvis.mu.org> In-Reply-To: <86ptvlw7k5.wl@hadaly.dyndns.org> References: <200209110100.g8B10uuh023018@freefall.freebsd.org> <86ptvlw7k5.wl@hadaly.dyndns.org>
next in thread | previous in thread | raw e-mail | index | archive | help
* Kimura Fuyuki <fuyuki@hadaly.org> [020910 20:04] wrote:
> 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;
ssize_t
--
-Alfred Perlstein [alfred@freebsd.org]
'Instead of asking why a piece of software is using "1970s technology,"
start asking why software is ignoring 30 years of accumulated wisdom.'
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?20020911042950.GA21806>
