aboutsummaryrefslogtreecommitdiff
path: root/src/IO/http.c
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2009-08-06 18:05:39 -0400
committerJorge Arellano Cid <jcid@dillo.org>2009-08-06 18:05:39 -0400
commitaba097ef997ac29b792f1fa7258a09df3a434b77 (patch)
tree0da6b1afe0bf860af8e3fd1bd490bf4fd1e03dee /src/IO/http.c
parent5ea64c055392281a0e8cabbd08692c41220bb9fc (diff)
Interim bugfix patch for the new CCC OpAbort
Diffstat (limited to 'src/IO/http.c')
-rw-r--r--src/IO/http.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IO/http.c b/src/IO/http.c
index d1fb6622..32f370b3 100644
--- a/src/IO/http.c
+++ b/src/IO/http.c
@@ -495,7 +495,8 @@ void a_Http_dns_cb(int Status, Dlist *addr_list, void *data)
MSG_BW(S->web, 0, "ERROR: Dns can't resolve %s",
(S->use_proxy) ? URL_HOST_(HTTP_Proxy) : URL_HOST_(S->web->url));
a_Chain_bcb(OpAbort, S->Info, NULL, NULL);
- a_Chain_fcb(OpAbort, S->Info, NULL, NULL);
+ S->Info->Flags &= ~CCC_Aborted;
+ a_Chain_fcb(OpAbort, S->Info, NULL, "Both");
dFree(S->Info);
Http_socket_free(SKey);
}