1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-28 21:46:38 +02:00

Fix (harmless) curl compile warning, reported by warg (#3987).

This commit is contained in:
Bram Matthys
2015-09-04 11:32:04 +02:00
parent 03616cb853
commit 67fe4479ec
+1 -1
View File
@@ -239,7 +239,7 @@ static void url_check_multi_handles(void)
CURL *easyhand = msg->easy_handle;
curl_easy_getinfo(easyhand, CURLINFO_RESPONSE_CODE, &code);
curl_easy_getinfo(easyhand, CURLINFO_PRIVATE, (char *) &handle);
curl_easy_getinfo(easyhand, CURLINFO_PRIVATE, (char **) &handle);
curl_easy_getinfo(easyhand, CURLINFO_FILETIME, &last_mod);
fclose(handle->fd);
#if defined(IRC_USER) && defined(IRC_GROUP)