diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-03-02 14:00:44 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-02 14:00:44 +0000 | 
| commit | 7c85be9435538b20eb4924e5ec69fe28bca9bc9e (patch) | |
| tree | 5294cee07416ab732cb3a6e6e883a5cd7c8f8acc /lib | |
| parent | 89829093ca10f885a7ec227d2d33e73ad812d6bd (diff) | |
corrected the reuse_fresh condition
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/url.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -2875,7 +2875,7 @@ static CURLcode CreateConnection(struct SessionHandle *data,       we only acknowledge this option if this is not a re-used connection       already (which happens due to follow-location or during a HTTP       authentication phase). */ -  if(data->set.reuse_fresh && !conn->bits.reuse) +  if(data->set.reuse_fresh && !data->state.this_is_a_follow)      reuse = FALSE;    else       reuse = ConnectionExists(data, conn, &conn_temp); | 
