[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r9522 - trunk/subversion/libsvn_fs_fs

From: Garrett Rooney <rooneg_at_electricjellyfish.net>
Date: 2004-04-27 03:05:15 CEST

On Apr 26, 2004, at 8:45 PM, jpieper@tigris.org wrote:
> /* Check for a blank line. */
> - if (strlen (buf) == 0)
> + if (err)
> {
> - *change_p = NULL;
> - return SVN_NO_ERROR;
> + if (err->apr_err == APR_EOF)
> + {
> + *change_p = NULL;
> + return SVN_NO_ERROR;
> + }
> + return err;
> }

To be pedantically correct that should be

if (APR_STATUS_IS_EOF(err->apr_err))

-garrett

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Apr 27 03:05:30 2004

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.