coar 99/02/22 08:50:27
Modified: src/main http_main.c
Log:
Fix a typo.
Submitted by: Shane Owenby <[EMAIL PROTECTED]>
Reviewed by: Ken Coar
Revision Changes Path
1.424 +1 -1 apache-1.3/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
retrieving revision 1.423
retrieving revision 1.424
diff -u -r1.423 -r1.424
--- http_main.c 1999/02/20 18:12:35 1.423
+++ http_main.c 1999/02/22 16:50:25 1.424
@@ -4812,7 +4812,7 @@
/* TODO: If too many jobs in queue, sleep, check for problems */
ap_acquire_mutex(allowed_globals.jobmutex);
new_job = (joblist *) malloc(sizeof(joblist));
- if (new_jobs == NULL) {
+ if (new_job == NULL) {
fprintf(stderr, "Ouch! Out of memory in add_job()!\n");
}
new_job->next = NULL;