made VERBOSE output more like it used to be, HEADER_IN is thus also ignored

by the internal debugfunction callback
This commit is contained in:
Daniel Stenberg 2002-05-04 15:36:07 +00:00
parent d9a1a59f22
commit d321056e8d
1 changed files with 9 additions and 7 deletions

View File

@ -392,13 +392,15 @@ int Curl_debug(struct SessionHandle *data, curl_infotype type,
return (*data->set.fdebug)(data, type, ptr, size,
data->set.debugdata);
if(type >= CURLINFO_DATA_IN)
/* don't do the data parts now */
return 0;
fwrite(s_infotype[type], 2, 1, data->set.err);
fwrite(ptr, size, 1, data->set.err);
switch(type) {
case CURLINFO_TEXT:
case CURLINFO_HEADER_OUT:
fwrite(s_infotype[type], 2, 1, data->set.err);
fwrite(ptr, size, 1, data->set.err);
break;
default: /* nada */
break;
}
return 0;
}