You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by André Malo <nd...@perlig.de> on 2007/02/28 18:27:38 UTC

Re: svn commit: r512842 - /apr/apr-util/trunk/dbm/sdbm/sdbm.c

* jerenkrantz@apache.org wrote: 

> http://svn.apache.org/viewvc/apr/apr-util/trunk/dbm/sdbm/sdbm.c?view=diff
>&rev=512842&r1=512841&r2=512842
> =========================================================================
>===== --- apr/apr-util/trunk/dbm/sdbm/sdbm.c (original)
> +++ apr/apr-util/trunk/dbm/sdbm/sdbm.c Wed Feb 28 08:56:36 2007
> @@ -107,6 +107,7 @@
>       */
>      if (!(flags & APR_WRITE)) {
>          db->flags |= SDBM_RDONLY;
> +        flags &= APR_BUFFERED;

I do assume, that should be |=, shouldn't it? ;-)

nd

Re: svn commit: r512842 - /apr/apr-util/trunk/dbm/sdbm/sdbm.c

Posted by Justin Erenkrantz <ju...@erenkrantz.com>.
On 2/28/07, André Malo <nd...@perlig.de> wrote:
> I do assume, that should be |=, shouldn't it? ;-)

Ergh.  Yah.  Stupid C&P from the sharelock and I didn't pay attention
to the fact that it was negated.

Doh.  Fixed in r512867.  -- justin