diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2001-08-10 14:10:19 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-10 14:10:19 +0000 | 
| commit | f8c357e4ff4571b50462ba805be6bb0bacdbc3ed (patch) | |
| tree | 7e48b725a585804cda4b56dba9f7367f896eda72 | |
| parent | 4b6c2408327d283a1453c8540367fd00285e5862 (diff) | |
corrected minor source indentation error
| -rw-r--r-- | lib/transfer.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/transfer.c b/lib/transfer.c index 6e649f734..dd8c19e68 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -524,7 +524,7 @@ Transfer(struct connectdata *c_conn)                  conn->size = contentlength;                  Curl_pgrsSetDownloadSize(data, contentlength);                } -			  else if((httpversion == 10) && +              else if((httpversion == 10) &&                        conn->bits.httpproxy &&                        compareheader(p, "Proxy-Connection:", "keep-alive")) {                  /* @@ -536,7 +536,7 @@ Transfer(struct connectdata *c_conn)                  conn->bits.close = FALSE; /* don't close when done */                  infof(data, "HTTP/1.0 proxy connection set to keep alive!\n");                } -			  else if((httpversion == 10) && +              else if((httpversion == 10) &&                        compareheader(p, "Connection:", "keep-alive")) {                  /*                   * A HTTP/1.0 reply with the 'Connection: keep-alive' line | 
