aboutsummaryrefslogtreecommitdiff
path: root/ares/ares_cancel.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-08-03 11:51:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-08-03 11:51:06 +0000
commit0606b792f04801b149d54e9c554b4f5c62ee8cad (patch)
treec4b1df9ba3bd2b5b47323e4e6567d4a20ce50767 /ares/ares_cancel.c
parenta53525e930d7fd499e49a63f704f96e3686ee922 (diff)
- Timo Teras changed the reason code used in the resolve callback done when
ares_cancel() is used, to be ARES_ECANCELLED instead of ARES_ETIMEOUT to better allow the callback to know what's happening.
Diffstat (limited to 'ares/ares_cancel.c')
-rw-r--r--ares/ares_cancel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/ares_cancel.c b/ares/ares_cancel.c
index 982ebc19f..63b1514e7 100644
--- a/ares/ares_cancel.c
+++ b/ares/ares_cancel.c
@@ -36,7 +36,7 @@ void ares_cancel(ares_channel channel)
{
query = list_node->data;
list_node = list_node->next; /* since we're deleting the query */
- query->callback(query->arg, ARES_ETIMEOUT, 0, NULL, 0);
+ query->callback(query->arg, ARES_ECANCELLED, 0, NULL, 0);
ares__free_query(query);
}
#ifndef NDEBUG