akosut      96/08/19 10:22:58

  Modified:    src       http_protocol.c
  Log:
  Add a missing CRLF. *sigh*
  
  Revision  Changes    Path
  1.39      +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.38
  retrieving revision 1.39
  diff -C3 -r1.38 -r1.39
  *** http_protocol.c   1996/08/18 20:26:30     1.38
  --- http_protocol.c   1996/08/19 17:22:56     1.39
  ***************
  *** 1249,1255 ****
    #endif
                    bputs("Connection: Keep-Alive\015\012", c->client);
            }
  !         else bputs("Connection: close", c->client);
            bputs("\015\012", c->client);
            return;
        }
  --- 1249,1255 ----
    #endif
                    bputs("Connection: Keep-Alive\015\012", c->client);
            }
  !         else bputs("Connection: close\015\012", c->client);
            bputs("\015\012", c->client);
            return;
        }
  
  
  

Reply via email to