stas        2003/10/17 10:17:06

  Modified:    src/modules/perl mod_perl.c
  Log:
  C++ comments are no-no
  Submitted by: Rafael Garcia-Suarez <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.191     +1 -1      modperl-2.0/src/modules/perl/mod_perl.c
  
  Index: mod_perl.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/mod_perl.c,v
  retrieving revision 1.190
  retrieving revision 1.191
  diff -u -u -r1.190 -r1.191
  --- mod_perl.c        16 Oct 2003 18:23:30 -0000      1.190
  +++ mod_perl.c        17 Oct 2003 17:17:06 -0000      1.191
  @@ -34,7 +34,7 @@
               while (isSPACE(*s)) s++;
           }
           if (s && isDIGIT(*s)) {
  -            MP_init_hash_seed = (UV)Atol(s); // XXX: Atoul()?
  +            MP_init_hash_seed = (UV)Atol(s); /* XXX: Atoul()? */
               MP_init_hash_seed_set = TRUE;
           }
       }
  
  
  

Reply via email to