Return-Path: Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Delivered-To: mailing list dev@apr.apache.org Received: (qmail 36902 invoked from network); 19 Jan 2001 12:39:09 -0000 Received: from valiant.concentric.net (HELO valiant.cnchost.com) (207.155.252.9) by h31.sny.collab.net with SMTP; 19 Jan 2001 12:39:09 -0000 Received: from www1 (www1.rowe-clan.net [208.176.192.146] (may be forged)) by valiant.cnchost.com id HAA11726; Fri, 19 Jan 2001 07:39:08 -0500 (EST) [ConcentricHost SMTP Relay 1.10] Errors-To: From: "William A. Rowe, Jr." To: Subject: RE: cvs commit: apr-util/crypto apr_sha1.c Date: Fri, 19 Jan 2001 06:39:15 -0600 Message-ID: <000601c08214$d5a23c70$92c0b0d0@roweclan.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 In-Reply-To: <20010119091953.39709.qmail@apache.org> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N > gstein 01/01/19 01:19:53 > > Modified: crypto apr_sha1.c > Log: > add a missing type back in. this used to be AP_BYTE. > > Revision Changes Path > 1.22 +2 -0 apr-util/crypto/apr_sha1.c Why? Please see apr.hw/apr.h.in. > Index: apr_sha1.c > =================================================================== > RCS file: /home/cvs/apr-util/crypto/apr_sha1.c,v > retrieving revision 1.21 > retrieving revision 1.22 > diff -u -u -r1.21 -r1.22 > --- apr_sha1.c 2001/01/19 07:02:02 1.21 > +++ apr_sha1.c 2001/01/19 09:19:53 1.22 > @@ -119,6 +119,8 @@ > > #define SHA_BLOCKSIZE 64 > > +typedef unsigned char apr_byte_t; > + > #if APR_CHARSET_EBCDIC > static apr_xlate_t *ebcdic2ascii_xlate; > > > > >