You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by as...@hyperreal.org on 1999/06/04 22:42:58 UTC

cvs commit: modperl/src/modules/perl perl_config.c

ask         99/06/04 13:42:58

  Modified:    .        Changes
               src/modules/perl perl_config.c
  Log:
  Change "setting auth_name" trace message so we don't get it without
  having enabled a MOD_PERL_TRACE level. Or was it the intended
  behaviour to TRACE some stuff if just have MOD_PERL_TRACE in the
  environment? perl_config.c suggests that, but it were the only place
  it was used.
  
  Revision  Changes    Path
  1.301     +4 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.300
  retrieving revision 1.301
  diff -u -r1.300 -r1.301
  --- Changes	1999/06/04 17:50:44	1.300
  +++ Changes	1999/06/04 20:42:55	1.301
  @@ -8,6 +8,10 @@
   
   =item 1.19_01-dev
   
  +Change "setting auth_name" trace message so we don't get it without
  +having enabled a MOD_PERL_TRACE level [Ask Bjoern Hansen
  +<as...@valueclick.com>]
  +
   s/class/pclass/g so we can compile w/ c++
   
   mod_perl will now save/restore SIGALRM
  
  
  
  1.74      +1 -1      modperl/src/modules/perl/perl_config.c
  
  Index: perl_config.c
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/perl_config.c,v
  retrieving revision 1.73
  retrieving revision 1.74
  diff -u -r1.73 -r1.74
  --- perl_config.c	1999/06/04 17:50:47	1.73
  +++ perl_config.c	1999/06/04 20:42:57	1.74
  @@ -152,7 +152,7 @@
       if(val) {
   	conf->auth_name = pstrdup(r->pool, val);
   	set_module_config(r->per_dir_config, &core_module, (void*)conf); 
  -	MP_TRACE(fprintf(stderr, "mod_perl: setting auth_name to %s\n", conf->auth_name));
  +	MP_TRACE_g(fprintf(stderr, "mod_perl: setting auth_name to %s\n", conf->auth_name));
       }
   
       return conf->auth_name;