1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Removed a line of dead code (discovered by Coverity)

This commit is contained in:
Dan Fandrich 2008-10-18 01:17:27 +00:00
parent 8eee5f3253
commit feff911fb7

View File

@ -592,7 +592,7 @@ int Curl_resolv_timeout(struct connectdata *conn,
/* alarm() makes a signal get sent when the timeout fires off, and that
will abort system calls */
prev_alarm = alarm((unsigned int) (timeout ? timeout/1000L : timeout));
prev_alarm = alarm((unsigned int) (timeout/1000L));
}
#else