On Thu, Jul 17, 2003 at 10:03:59AM -0700, Greg Stein wrote:
> On Thu, Jul 17, 2003 at 04:17:05PM -0000, [EMAIL PROTECTED] wrote:
> >...
> > +++ util_md5.c 17 Jul 2003 16:17:04 -0000 1.30
> >...
> > apr_md5_init(&context);
> > nbytes = sizeof(buf);
> > while (apr_file_read(infile, buf, &nbytes) == APR_SUCCESS) {
> > - length += nbytes;
> > apr_md5_update(&context, buf, nbytes);
> > + nbytes = sizeof(buf);
> > }
>
> That indentation looks funny. Did a TAB character get in there?
There are TABs in the original code, the lines I added use spaces.