aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-11-29 12:49:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-11-29 12:49:10 +0000
commit533c24a4712d0565ae0de89cd64e0d3adce78966 (patch)
tree15a81da3ce6e3aa2127ebcb4d1b4ef0a83999719 /lib/url.c
parent6a9697387afe3656fe308a4cc009696ea99b1b1e (diff)
disabling EPSV is now possible
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/url.c b/lib/url.c
index c1a58be61..2275d399f 100644
--- 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! */