Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 31067 invoked by uid 500); 21 Jun 2002 11:33:56 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 31050 invoked from network); 21 Jun 2002 11:33:55 -0000 Date: 21 Jun 2002 11:33:55 -0000 Message-ID: <20020621113355.56156.qmail@icarus.apache.org> From: trawick@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/misc/unix rand.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 2002/06/21 04:33:55 Modified: . CHANGES misc/unix rand.c Log: Fix a compile error in the EGD support in rand.c on older Solaris versions. PR: 9976 Submitted by: Jim Morris Reviewed by: Jeff Trawick Revision Changes Path 1.296 +3 -0 apr/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apr/CHANGES,v retrieving revision 1.295 retrieving revision 1.296 diff -u -r1.295 -r1.296 --- CHANGES 19 Jun 2002 19:51:04 -0000 1.295 +++ CHANGES 21 Jun 2002 11:33:55 -0000 1.296 @@ -1,5 +1,8 @@ Changes with APR b1 + *) Fix a compile error in the EGD support in rand.c on older Solaris + versions. PR 9976 [Jim Morris ] + *) Fixed apr_file_seek() to unset the eof_hit flag. [Stas Bekman] *) Removed --disable-atomics flag and added --enable-nonportable-atomics, 1.11 +1 -1 apr/misc/unix/rand.c Index: rand.c =================================================================== RCS file: /home/cvs/apr/misc/unix/rand.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- rand.c 18 May 2002 04:12:28 -0000 1.10 +++ rand.c 21 Jun 2002 11:33:55 -0000 1.11 @@ -121,7 +121,7 @@ */ int egd_socket, egd_path_len, rv; struct sockaddr_un addr; - socklen_t egd_addr_len; + apr_socklen_t egd_addr_len; size_t resp_expected; unsigned char req[2], resp[255]; char *curbuf = buf;