]> granicus.if.org Git - curl/commitdiff
disabling EPSV is now possible
authorDaniel Stenberg <daniel@haxx.se>
Thu, 29 Nov 2001 12:49:10 +0000 (12:49 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 29 Nov 2001 12:49:10 +0000 (12:49 +0000)
include/curl/curl.h
lib/url.c

index 52b3ecf019949de5f4b1069a756e261d63f4599b..22440b433f5fd6fdb1d91e6853863cc604e9834c 100644 (file)
@@ -584,7 +584,7 @@ CURLcode curl_global_init(long flags);
 void curl_global_cleanup(void);
 
 /* This is the version number */
-#define LIBCURL_VERSION "7.9.2-pre3"
+#define LIBCURL_VERSION "7.9.2-pre6"
 #define LIBCURL_VERSION_NUM 0x070902
 
 /* linked-list structure for the CURLOPT_QUOTE option (and other) */
index c1a58be610325f25e1c346a068394d065a3893e8..2275d399f0254033604e99aa34afd3e8884c1a83 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -1945,6 +1945,7 @@ static CURLcode CreateConnection(struct SessionHandle *data,
     struct sigaction sigact;
     sigaction(SIGALRM, NULL, &sigact);
     keep_sigact = sigact;
+    keep_copysig = TRUE; /* yes, we have a copy */
     sigact.sa_handler = alarmfunc;
 #ifdef SA_RESTART
     /* HPUX doesn't have SA_RESTART but defaults to that behaviour! */