diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-06-04 21:26:30 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-06-04 21:26:30 +0000 |
commit | 30808dca4087e6bf242debf575a6eae9bf4563c7 (patch) | |
tree | efdfa4c7322a1f7038510de3fcd062dfbc562df1 | |
parent | 8629620b1cb7b3980fa26201c34f8c9756d16e24 (diff) |
minor edit since getting an ID seems pointless when failure happens
-rw-r--r-- | ares/ares_query.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ares/ares_query.c b/ares/ares_query.c index 4ca4cf978..ed32e9288 100644 --- a/ares/ares_query.c +++ b/ares/ares_query.c @@ -108,14 +108,14 @@ void ares_query(ares_channel channel, const char *name, int dnsclass, rd = !(channel->flags & ARES_FLAG_NORECURSE); status = ares_mkquery(name, dnsclass, type, channel->next_id, rd, &qbuf, &qlen); - channel->next_id = generate_unique_id(channel); - if (status != ARES_SUCCESS) { callback(arg, status, NULL, 0); return; } + channel->next_id = generate_unique_id(channel); + /* Allocate and fill in the query structure. */ qquery = malloc(sizeof(struct qquery)); if (!qquery) |