Added the forgotten http_code!

This commit is contained in:
Daniel Stenberg 2000-03-16 11:41:56 +00:00
parent d48939c0c0
commit 739b3f241d
1 changed files with 3 additions and 0 deletions

View File

@ -102,6 +102,9 @@ void WriteOut(struct UrlData *data)
case VAR_EFFECTIVE_URL:
fprintf(stream, "%s", data->url?data->url:"");
break;
case VAR_HTTP_CODE:
fprintf(stream, "%03d", data->progress.httpcode);
break;
case VAR_TOTAL_TIME:
fprintf(stream, "%.3f", data->progress.timespent);
break;