Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 16672 invoked from network); 8 Jul 2005 15:52:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Jul 2005 15:52:17 -0000 Received: (qmail 82640 invoked by uid 500); 8 Jul 2005 15:52:16 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 82601 invoked by uid 500); 8 Jul 2005 15:52:16 -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 82586 invoked by uid 99); 8 Jul 2005 15:52:16 -0000 X-ASF-Spam-Status: No, hits=-9.8 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; Fri, 08 Jul 2005 08:52:05 -0700 Received: (qmail 16589 invoked by uid 65534); 8 Jul 2005 15:52:03 -0000 Message-ID: <20050708155203.16588.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r209823 - /httpd/httpd/trunk/modules/ssl/ssl_scache_dbm.c Date: Fri, 08 Jul 2005 15:52:02 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: wrowe Date: Fri Jul 8 08:52:02 2005 New Revision: 209823 URL: http://svn.apache.org/viewcvs?rev=209823&view=rev Log: No UCHAR, per Joe Modified: httpd/httpd/trunk/modules/ssl/ssl_scache_dbm.c Modified: httpd/httpd/trunk/modules/ssl/ssl_scache_dbm.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/ssl/ssl_scache_dbm.c?rev=209823&r1=209822&r2=209823&view=diff ============================================================================== --- httpd/httpd/trunk/modules/ssl/ssl_scache_dbm.c (original) +++ httpd/httpd/trunk/modules/ssl/ssl_scache_dbm.c Fri Jul 8 08:52:02 2005 @@ -244,7 +244,8 @@ return NULL; } /* Cast needed, ucpData may be const */ - memcpy((UCHAR *)ucpData, (char *)dbmval.dptr+sizeof(time_t), nData); + memcpy((unsigned char *)ucpData, + (char *)dbmval.dptr + sizeof(time_t), nData); memcpy(&expiry, dbmval.dptr, sizeof(time_t)); apr_dbm_close(dbm);