bjh 99/08/31 09:14:20
Modified: src/lib/apr/misc/os2 start.c
Log:
Revert Ryans wrongful replacement :)
An inappropriate s/pool/ap_context_t/
Revision Changes Path
1.5 +3 -3 apache-2.0/src/lib/apr/misc/os2/start.c
Index: start.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/misc/os2/start.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- start.c 1999/08/31 05:32:43 1.4
+++ start.c 1999/08/31 16:14:19 1.5
@@ -66,13 +66,13 @@
ap_pool_t *pool;
if (cont) {
- ap_context_t = ap_make_sub_pool(cont->pool);
+ pool = ap_make_sub_pool(cont->pool);
}
else {
- ap_context_t = ap_init_alloc();;
+ pool = ap_init_alloc();;
}
- if (ap_context_t == NULL) {
+ if (pool == NULL) {
return APR_ENOPOOL;
}