diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-04-28 09:21:20 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-04-28 09:21:20 +0200 |
commit | 53ef3493bfd4ddaf71adea051ea530b87abfd5a9 (patch) | |
tree | 8a1480b9d21fbb9c565740ffbe540329099682f2 | |
parent | cbd98b2c28315a2285c4447eba2b06128da1abe0 (diff) | |
download | curl-53ef3493bfd4ddaf71adea051ea530b87abfd5a9.tar.gz |
cleanup: remove old unused debug code
-rw-r--r-- | lib/http.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/http.c b/lib/http.c index 0f7ad14cf..2e1649134 100644 --- a/lib/http.c +++ b/lib/http.c @@ -886,16 +886,6 @@ int Curl_http_should_fail(struct connectdata *conn) ** the client needs to reauthenticate. Once that info is ** available, use it here. */ -#if 0 /* set to 1 when debugging this functionality */ - infof(data,"%s: authstage = %d\n",__FUNCTION__,data->state.authstage); - infof(data,"%s: authwant = 0x%08x\n",__FUNCTION__,data->state.authwant); - infof(data,"%s: authavail = 0x%08x\n",__FUNCTION__,data->state.authavail); - infof(data,"%s: httpcode = %d\n",__FUNCTION__,k->httpcode); - infof(data,"%s: authdone = %d\n",__FUNCTION__,data->state.authdone); - infof(data,"%s: newurl = %s\n",__FUNCTION__,data->req.newurl ? - data->req.newurl : "(null)"); - infof(data,"%s: authproblem = %d\n",__FUNCTION__,data->state.authproblem); -#endif /* ** Either we're not authenticating, or we're supposed to |