ben         96/04/12 10:45:06

  Modified:    src       mod_dir.c
  Log:
  Fix a curious and strictly incorrect declaration.
  Reported By: Igor Sereda <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.7       +1 -1      apache/src/mod_dir.c
  
  Index: mod_dir.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_dir.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -C3 -r1.6 -r1.7
  *** mod_dir.c 1996/04/09 19:08:40     1.6
  --- mod_dir.c 1996/04/12 17:45:03     1.7
  ***************
  *** 617,623 ****
                t2 = pstrcat(scratch, t2, "</A>", NULL);
                } else 
            {
  !             char buff[23]="                       ";
                t2 = escape_html(scratch, t);
                buff[23-len] = '\0';
                t2 = pstrcat(scratch, t2, "</A>", buff, NULL);
  --- 617,623 ----
                t2 = pstrcat(scratch, t2, "</A>", NULL);
                } else 
            {
  !             char *buff="                       ";
                t2 = escape_html(scratch, t);
                buff[23-len] = '\0';
                t2 = pstrcat(scratch, t2, "</A>", buff, NULL);
  
  
  

Reply via email to