From: Micah Andersen Date: Mon, 22 Jul 2019 22:53:15 +0000 (-0400) Subject: Use the same parenthesis grouping as the other conditions in this if-block (fixes... X-Git-Tag: mod_authnz_external-3.3.3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fef99f5163c498cd031c7297aa9b1a36546fcc59;p=apache-authnz-external Use the same parenthesis grouping as the other conditions in this if-block (fixes issue #36) --- diff --git a/mod_authnz_external/mod_authnz_external.c b/mod_authnz_external/mod_authnz_external.c index 3f7603e..0cc5ffb 100644 --- a/mod_authnz_external/mod_authnz_external.c +++ b/mod_authnz_external/mod_authnz_external.c @@ -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,