brian       96/10/31 09:36:23

  Modified:    src       http_protocol.c
  Log:
  Reversing earlier patch - L not allowed for x on some platforms, and this
  isn't the right fix anyways.
  
  Revision  Changes    Path
  1.68      +1 -1      apache/src/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_protocol.c,v
  retrieving revision 1.67
  retrieving revision 1.68
  diff -C3 -r1.67 -r1.68
  *** http_protocol.c   1996/10/31 02:08:50     1.67
  --- http_protocol.c   1996/10/31 17:36:20     1.68
  ***************
  *** 342,348 ****
         */
    
        if (r->finfo.st_mode != 0)
  !         sprintf(weak_etag, "W/\"%lx-%Lx-%lx\"", r->finfo.st_ino,
                r->finfo.st_size, mtime);
        else
            sprintf(weak_etag, "W/\"%lx\"", mtime);
  --- 342,348 ----
         */
    
        if (r->finfo.st_mode != 0)
  !         sprintf(weak_etag, "W/\"%lx-%lx-%lx\"", r->finfo.st_ino,
                r->finfo.st_size, mtime);
        else
            sprintf(weak_etag, "W/\"%lx\"", mtime);
  
  
  

Reply via email to