You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2001/12/18 15:18:28 UTC

cvs commit: httpd-2.0/server/mpm/netware mpm_netware.c

trawick     01/12/18 06:18:28

  Modified:    server/mpm/netware mpm_netware.c
  Log:
  fix some references to the wrong constant (HARD_SERVER_LIMIT vs.
  HARD_THREAD_LIMIT)
  
  Revision  Changes    Path
  1.17      +3 -3      httpd-2.0/server/mpm/netware/mpm_netware.c
  
  Index: mpm_netware.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/mpm/netware/mpm_netware.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- mpm_netware.c	2001/12/18 13:48:53	1.16
  +++ mpm_netware.c	2001/12/18 14:18:28	1.17
  @@ -1131,12 +1131,12 @@
       if (ap_threads_limit > HARD_THREAD_LIMIT) {
          ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
                       "WARNING: MaxClients of %d exceeds compile time limit "
  -                    "of %d servers,", ap_threads_limit, HARD_SERVER_LIMIT);
  +                    "of %d servers,", ap_threads_limit, HARD_THREAD_LIMIT);
          ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
                       " lowering MaxClients to %d.  To increase, please "
  -                    "see the", HARD_SERVER_LIMIT);
  +                    "see the", HARD_THREAD_LIMIT);
          ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL,
  -                    " HARD_SERVER_LIMIT define in %s.",
  +                    " HARD_THREAD_LIMIT define in %s.",
                       AP_MPM_HARD_LIMITS_FILE);
          ap_threads_limit = HARD_THREAD_LIMIT;
       }