From: Timo Sirainen Date: Fri, 21 Mar 2025 18:32:30 +0000 (+0200) Subject: lib-master: Fix anvil_client_query() return value comment X-Git-Tag: 2.4.2~870 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49a84e4d3887235227a075ee7e3051228be5502f;p=thirdparty%2Fdovecot%2Fcore.git lib-master: Fix anvil_client_query() return value comment It never returns NULL. --- diff --git a/src/lib-master/anvil-client.h b/src/lib-master/anvil-client.h index a9fc62d6c0..ad719ec7c5 100644 --- a/src/lib-master/anvil-client.h +++ b/src/lib-master/anvil-client.h @@ -44,8 +44,7 @@ int anvil_client_connect(struct anvil_client *client, bool retry); /* Send a query to anvil, expect a one line reply. The returned pointer can be used to abort the query later. It becomes invalid when callback is - called (= the callback must not call it). Returns NULL if the query couldn't - be sent. */ + called (= the callback must not call it). */ struct anvil_query * anvil_client_query(struct anvil_client *client, const char *query, unsigned int timeout_msecs,