Skip to content

Commit

Permalink
Freshclam: remove curl result warning
Browse files Browse the repository at this point in the history
A warning printing the HTTP code and file size was accidentally
committed at the end of ClamAV 1.1.0 dev when fixing a bug.
Remove this warning.

Resolves: #930
  • Loading branch information
micahsnyder committed Jun 1, 2023
1 parent e16b4e1 commit 756fe01
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion libfreshclam/libfreshclam_internal.c
Expand Up @@ -1300,7 +1300,6 @@ static fc_error_t downloadFile(

/* Check HTTP code */
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code);
logg(LOGG_WARNING, " ******* RESULT %ld, SIZE: %zu ******* \n", http_code, receivedFile.size);
switch (http_code) {
case 200:
case 206: {
Expand Down

0 comments on commit 756fe01

Please sign in to comment.