From: Jeff Trawick Date: Mon, 24 Feb 2014 17:52:08 +0000 (+0000) Subject: normalize an ugly construct which somehow manages to return the correct value X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=665a6f337ae7ad3dabe5994640398b6251227aa8;p=thirdparty%2Fapache%2Fhttpd.git normalize an ugly construct which somehow manages to return the correct value git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1571369 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index c11a16c4638..7122cb425d3 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -2637,7 +2637,7 @@ static apr_status_t rewritelock_remove(void *data) apr_global_mutex_destroy(rewrite_mapr_lock_acquire); rewrite_mapr_lock_acquire = NULL; } - return(0); + return APR_SUCCESS; }