]> granicus.if.org Git - apache-authnz-external/commitdiff
Use the same parenthesis grouping as the other conditions in this if-block (fixes...
authorMicah Andersen <micah@bimi.org>
Mon, 22 Jul 2019 22:53:15 +0000 (18:53 -0400)
committerMicah Andersen <micah@bimi.org>
Mon, 22 Jul 2019 22:53:15 +0000 (18:53 -0400)
mod_authnz_external/mod_authnz_external.c

index 3f7603ed98bfd5cbbfdcca9a034065c6d9ca5f2d..0cc5ffbe14d91ba9873928652f4508f0e0cf2b1a 100644 (file)
@@ -512,8 +512,8 @@ static int exec_external(const char *extpath, const char *extmethod,
        ((rc= apr_procattr_detach_set(procattr, isdaemon)) != APR_SUCCESS) ||
 
        /* function to call if child has error after fork, before exec */
-       ((rc= apr_procattr_child_errfn_set(procattr, extchilderr)
-             != APR_SUCCESS)))
+       ((rc= apr_procattr_child_errfn_set(procattr, extchilderr))
+             != APR_SUCCESS))
     {
        /* Failed.  Probably never happens. */
        ap_log_rerror(APLOG_MARK, APLOG_ERR, rc, r,