brian 97/02/02 18:08:18
Modified: src http_core.c
Log:
Reviewed by: Dean Gaudet <[EMAIL PROTECTED]>, Jim Jagielski <[EMAIL
PROTECTED]>
Submitted by: Ed Korthof <[EMAIL PROTECTED]>
Fix core dump problems with Rlimit directives
Revision Changes Path
1.63 +1 -1 apache/src/http_core.c
Index: http_core.c
===================================================================
RCS file: /export/home/cvs/apache/src/http_core.c,v
retrieving revision 1.62
retrieving revision 1.63
diff -C3 -r1.62 -r1.63
*** http_core.c 1997/02/01 22:03:36 1.62
--- http_core.c 1997/02/03 02:08:16 1.63
***************
*** 1004,1010 ****
return;
}
! if ((str = getword_conf(cmd->pool, &arg)))
if (!strcasecmp(str, "max"))
cur = limit->rlim_max;
else
--- 1004,1010 ----
return;
}
! if (arg2 && (str = getword_conf(cmd->pool, &arg)))
if (!strcasecmp(str, "max"))
cur = limit->rlim_max;
else