dgaudet 97/07/23 21:13:13
Modified: src mod_include.c Log: Replace struct pool with just pool. Submitted by: Stanley Gambarin <[EMAIL PROTECTED]> Revision Changes Path 1.43 +2 -2 apache/src/mod_include.c Index: mod_include.c =================================================================== RCS file: /export/home/cvs/apache/src/mod_include.c,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- mod_include.c 1997/07/17 22:27:37 1.42 +++ mod_include.c 1997/07/24 04:13:11 1.43 @@ -1115,13 +1115,13 @@ } *root, *current, *new; char *parse; char buffer[MAX_STRING_LEN]; - struct pool *expr_pool; + pool *expr_pool; int retval = 0; if ((parse = expr) == (char *)NULL) return(0); root = current = (struct parse_node*)NULL; - if ((expr_pool = make_sub_pool(r->pool)) == (struct pool *)NULL) { + if ((expr_pool = make_sub_pool(r->pool)) == (pool *)NULL) { log_printf(r->server, "out of memory processing file %s", r->filename); rputs(error, r); return(0);