diff options
author | Steinar H. Gunderson <sesse@google.com> | 2007-09-28 14:46:51 +0000 |
---|---|---|
committer | Steinar H. Gunderson <sesse@google.com> | 2007-09-28 14:46:51 +0000 |
commit | 50ba81cd230f9054fa7c45cb4202ce8720c502b3 (patch) | |
tree | 277c02b995aacc09540ec58270e10cd1845ff2b3 /ares_destroy.c | |
parent | b669e17544c0ff64d120b8a0df2677c59ccea8fd (diff) | |
download | c-ares-50ba81cd230f9054fa7c45cb4202ce8720c502b3.tar.gz c-ares-50ba81cd230f9054fa7c45cb4202ce8720c502b3.tar.bz2 c-ares-50ba81cd230f9054fa7c45cb4202ce8720c502b3.zip |
Make the query callbacks return the number of timeouts that happened during the execution of a query, and update documentation accordingly. (Patch from the Google tree.)
Diffstat (limited to 'ares_destroy.c')
-rw-r--r-- | ares_destroy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ares_destroy.c b/ares_destroy.c index e844ea6..d1f82bd 100644 --- a/ares_destroy.c +++ b/ares_destroy.c @@ -62,7 +62,7 @@ void ares_destroy(ares_channel channel) while (channel->queries) { query = channel->queries; channel->queries = query->next; - query->callback(query->arg, ARES_EDESTRUCTION, NULL, 0); + query->callback(query->arg, ARES_EDESTRUCTION, 0, NULL, 0); if (query->tcpbuf) free(query->tcpbuf); if (query->server_info) |