aboutsummaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2007-03-21 13:09:39 +0000
committerYang Tse <yangsita@gmail.com>2007-03-21 13:09:39 +0000
commit90ce18019c537bac043fdbc55b91080ad759e0f0 (patch)
tree44c41ffdc52482a1bdb6204982ce2977b590e9b3 /lib/sendf.c
parentfe10cb2ef59a5989f35f97f86d3b9eaee41d474b (diff)
reverted back to previous version => http://curl.haxx.se/mail/lib-2007-03/0258.html
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index a4a1347f7..bf9ee490a 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -224,10 +224,6 @@ static size_t convert_lineends(struct SessionHandle *data,
void Curl_infof(struct SessionHandle *data, const char *fmt, ...)
{
-#ifdef CURL_DISABLE_VERBOSE_STRINGS
- (void)data;
- (void)fmt;
-#else
if(data && data->set.verbose) {
va_list ap;
size_t len;
@@ -238,7 +234,6 @@ void Curl_infof(struct SessionHandle *data, const char *fmt, ...)
len = strlen(print_buffer);
Curl_debug(data, CURLINFO_TEXT, print_buffer, len, NULL);
}
-#endif
}
/* Curl_failf() is for messages stating why we failed.