You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Matt Kraai <kr...@alumni.cmu.edu> on 2002/10/17 20:52:12 UTC

[PATCH] invert backwards test

  * subversion/bindings/swig/swigutil_py.c
    (svn_swig_py_notify_func): Invert a backwards test.

Index: subversion/bindings/swig/swigutil_py.c
===================================================================
--- subversion/bindings/swig/swigutil_py.c
+++ subversion/bindings/swig/swigutil_py.c	2002-10-17 13:45:01.000000000 -0700
@@ -622,7 +622,7 @@
                                           path, action, kind,
                                           mime_type,
                                           content_state, prop_state, 
-                                          revision)) == NULL)
+                                          revision)) != NULL)
         {
           Py_XDECREF(result);
         }

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: [PATCH] invert backwards test

Posted by cm...@collab.net.
Karl Fogel <kf...@newton.ch.collab.net> writes:

> SWIG binding folks: it looks like this never got applied.  I'd apply
> it myself, but I'm in the middle of testing other stuff and don't know
> enough to judge it correct just by looking.  So forwarding it
> here...

Applied.  Thanks, Matt (and Karl for the unearthing).

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: [PATCH] invert backwards test

Posted by Karl Fogel <kf...@newton.ch.collab.net>.
SWIG binding folks: it looks like this never got applied.  I'd apply
it myself, but I'm in the middle of testing other stuff and don't know
enough to judge it correct just by looking.  So forwarding it here...

-Karl


Matt Kraai <kr...@alumni.cmu.edu> writes:
>   * subversion/bindings/swig/swigutil_py.c
>     (svn_swig_py_notify_func): Invert a backwards test.
> 
> Index: subversion/bindings/swig/swigutil_py.c
> ===================================================================
> --- subversion/bindings/swig/swigutil_py.c
> +++ subversion/bindings/swig/swigutil_py.c	2002-10-17 13:45:01.000000000 -0700
> @@ -622,7 +622,7 @@
>                                            path, action, kind,
>                                            mime_type,
>                                            content_state, prop_state, 
> -                                          revision)) == NULL)
> +                                          revision)) != NULL)
>          {
>            Py_XDECREF(result);
>          }
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org