dgaudet 98/06/07 22:39:56
Modified: src CHANGES src/main alloc.c Log: fix typo Submitted by: Alvaro Martinez Echevarria Revision Changes Path 1.895 +2 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.894 retrieving revision 1.895 diff -u -r1.894 -r1.895 --- CHANGES 1998/06/08 05:32:22 1.894 +++ CHANGES 1998/06/08 05:39:53 1.895 @@ -1,5 +1,7 @@ Changes with Apache 1.3.1 + *) Fix a typo in pool debugging code. [Alvaro Martinez Echevarria] + *) mod_unique_id did not work on alpha linux (in general on any architecture that has 64-bit time_t). [Alvaro Martinez Echevarria <[EMAIL PROTECTED]>] 1.95 +1 -1 apache-1.3/src/main/alloc.c Index: alloc.c =================================================================== RCS file: /export/home/cvs/apache-1.3/src/main/alloc.c,v retrieving revision 1.94 retrieving revision 1.95 diff -u -r1.94 -r1.95 --- alloc.c 1998/05/28 22:09:50 1.94 +++ alloc.c 1998/06/08 05:39:55 1.95 @@ -1178,7 +1178,7 @@ abort(); } if (!ap_pool_is_ancestor(ap_find_pool(val), t->a.pool)) { - fprintf(stderr, "table_set: key not in ancestor pool of t\n"); + fprintf(stderr, "table_set: val not in ancestor pool of t\n"); abort(); } }