dougm       2002/08/27 20:12:46

  Modified:    src/modules/perl modperl_cmd.c
  Log:
  use ap_strstr_c instead of strstr to avoid a warning
  
  Revision  Changes    Path
  1.27      +1 -1      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.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- modperl_cmd.c     27 Aug 2002 04:26:54 -0000      1.26
  +++ modperl_cmd.c     28 Aug 2002 03:12:46 -0000      1.27
  @@ -308,7 +308,7 @@
       server_rec *s = parms->server;
       const char *errmsg;
   
  -    if (!strstr(arg, "::")) {
  +    if (!ap_strstr_c(arg, "::")) {
           return DECLINE_CMD; /* let mod_so handle it */
       }
   
  
  
  


Reply via email to