stas        2002/12/20 18:26:02

  Modified:    src/modules/perl modperl_cmd.c
               .        Changes
  Log:
  revert the last change, the file/linenumber of the error are already
  reported by httpd
  
  Revision  Changes    Path
  1.36      +2 -5      modperl-2.0/src/modules/perl/modperl_cmd.c
  
  Index: modperl_cmd.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_cmd.c,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- modperl_cmd.c     20 Dec 2002 07:23:00 -0000      1.35
  +++ modperl_cmd.c     21 Dec 2002 02:26:02 -0000      1.36
  @@ -8,11 +8,8 @@
   
   static char *modperl_cmd_too_late(cmd_parms *parms)
   {
  -    return apr_psprintf(parms->pool,
  -                        "mod_perl is already running, too late for %s (%s:%d)",
  -                        parms->cmd->name,
  -                        parms->directive->filename,
  -                        parms->directive->line_num);
  +    return apr_pstrcat(parms->pool, "mod_perl is already running, "
  +                       "too late for ", parms->cmd->name, NULL);
   }
   
   char *modperl_cmd_push_handlers(MpAV **handlers, const char *name,
  
  
  
  1.87      +0 -3      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.86
  retrieving revision 1.87
  diff -u -r1.86 -r1.87
  --- Changes   20 Dec 2002 07:23:00 -0000      1.86
  +++ Changes   21 Dec 2002 02:26:02 -0000      1.87
  @@ -10,9 +10,6 @@
   
   =item 1.99_08-dev
   
  -when reporting "too late for something", print the config file and the
  -line number [Stas]
  -
   fix $r->read to read all the requested amount of data if possible,
   adjust the test TestApache::read to verify that [Stas]
   
  
  
  


Reply via email to