From cvs-return-2610-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Wed Jan 02 09:34:51 2002 Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 18954 invoked by uid 500); 2 Jan 2002 09:34:51 -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 18943 invoked from network); 2 Jan 2002 09:34:51 -0000 Date: 2 Jan 2002 09:34:49 -0000 Message-ID: <20020102093449.80923.qmail@icarus.apache.org> From: jerenkrantz@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/test testmmap.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jerenkrantz 02/01/02 01:34:49 Modified: test testmmap.c Log: In a VPATH build, we don't know where testmmap.c is, but we have a fighting shot to find testmmap. *grin* Revision Changes Path 1.31 +1 -1 apr/test/testmmap.c Index: testmmap.c =================================================================== RCS file: /home/cvs/apr/test/testmmap.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- testmmap.c 9 Sep 2001 06:03:05 -0000 1.30 +++ testmmap.c 2 Jan 2002 09:34:49 -0000 1.31 @@ -100,7 +100,7 @@ fprintf(stdout,"OK\n"); apr_filepath_get(&file1, 0, context); - file1 = apr_pstrcat(context,file1,"/testmmap.c",NULL); + file1 = apr_pstrcat(context,file1,"/testmmap",NULL); fprintf(stdout, "Opening file........................"); rv = apr_file_open(&thefile, file1, flag, APR_UREAD | APR_GREAD, context);