You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mt...@apache.org on 2009/02/07 10:43:44 UTC

svn commit: r741867 - /apr/apr/trunk/threadproc/unix/proc.c

Author: mturk
Date: Sat Feb  7 09:43:44 2009
New Revision: 741867

URL: http://svn.apache.org/viewvc?rev=741867&view=rev
Log:
Fix typo

Modified:
    apr/apr/trunk/threadproc/unix/proc.c

Modified: apr/apr/trunk/threadproc/unix/proc.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/threadproc/unix/proc.c?rev=741867&r1=741866&r2=741867&view=diff
==============================================================================
--- apr/apr/trunk/threadproc/unix/proc.c (original)
+++ apr/apr/trunk/threadproc/unix/proc.c Sat Feb  7 09:43:44 2009
@@ -470,7 +470,7 @@
                 apr_status_t r;
                 r = (*c->perms_set_fn)((void *)c->data, c->perms,
                                        attr->uid, attr->gid);
-                if (r != APR_SUCCESS || r != APR_ENOTIMPL) {
+                if (r != APR_SUCCESS && r != APR_ENOTIMPL) {
                     _exit(-1);
                 }
                 c = c->next;