Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 99876 invoked from network); 7 Feb 2006 08:54:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Feb 2006 08:54:25 -0000 Received: (qmail 18290 invoked by uid 500); 7 Feb 2006 08:54:14 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 18253 invoked by uid 500); 7 Feb 2006 08:54:13 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 18242 invoked by uid 99); 7 Feb 2006 08:54:13 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Feb 2006 00:54:13 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 07 Feb 2006 00:54:12 -0800 Received: (qmail 99568 invoked by uid 65534); 7 Feb 2006 08:53:41 -0000 Message-ID: <20060207085341.99567.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r375549 - /httpd/httpd/trunk/modules/aaa/mod_authz_core.c Date: Tue, 07 Feb 2006 08:53:41 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.6 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Tue Feb 7 00:53:37 2006 New Revision: 375549 URL: http://svn.apache.org/viewcvs?rev=375549&view=rev Log: * modules/aaa/mod_authz_core.c (add_authz_provider): Fix pointer cast warning on LP64 platforms. Modified: httpd/httpd/trunk/modules/aaa/mod_authz_core.c Modified: httpd/httpd/trunk/modules/aaa/mod_authz_core.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/aaa/mod_authz_core.c?rev=375549&r1=375548&r2=375549&view=diff ============================================================================== --- httpd/httpd/trunk/modules/aaa/mod_authz_core.c (original) +++ httpd/httpd/trunk/modules/aaa/mod_authz_core.c Tue Feb 7 00:53:37 2006 @@ -173,7 +173,7 @@ newp->provider_name, "0"); newp->req_state = conf->req_state; newp->req_state_level = conf->req_state_level; - newp->is_reject = (int)cmd->info; + newp->is_reject = (cmd->info != NULL); /* by the time the config file is used, the provider should be loaded * and registered with us.