Commit feff911f authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Removed a line of dead code (discovered by Coverity)

parent 8eee5f32
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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