From: Daniel Stenberg Date: Mon, 1 Oct 2001 11:35:29 +0000 (+0000) Subject: removed obsoletetd myalarm() calls X-Git-Tag: curl-7_9_1~140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5cd267b2bece6860acbd43f6fe29354bf1069dc0;p=thirdparty%2Fcurl.git removed obsoletetd myalarm() calls --- diff --git a/lib/ftp.c b/lib/ftp.c index 5576a3013e..38d9d7021a 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -353,8 +353,6 @@ CURLcode Curl_ftp_connect(struct connectdata *conn) CURLcode result; int ftpcode; - myalarm(0); /* switch off the alarm stuff */ - ftp = (struct FTP *)malloc(sizeof(struct FTP)); if(!ftp) return CURLE_OUT_OF_MEMORY; diff --git a/lib/transfer.c b/lib/transfer.c index dc628982b2..0a4c93e55a 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -220,8 +220,6 @@ Transfer(struct connectdata *c_conn) hbufp = data->state.headerbuff; - myalarm (0); /* switch off the alarm-style timeout */ - now = Curl_tvnow(); start = now; @@ -1127,7 +1125,7 @@ CURLcode Curl_perform(struct SessionHandle *data) if(newurl) free(newurl); - /* make sure the alarm is switched off! */ + /* make absolutely sure the alarm is switched off! */ if(data->set.timeout || data->set.connecttimeout) myalarm(0);