]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-auth: Remove "BUG:" prefix from "Authentication server sent unknown id" error
authorTimo Sirainen <timo.sirainen@open-xchange.com>
Wed, 4 Sep 2019 12:38:09 +0000 (15:38 +0300)
committerTimo Sirainen <timo.sirainen@open-xchange.com>
Wed, 4 Sep 2019 12:58:16 +0000 (15:58 +0300)
It's not necessarily a bug.

src/lib-auth/auth-client-connection.c

index c372aa7333e3d3f74ee112d4319b8ca9db1cc935..2ecbb7b60d3777366495eaab48f523ab47184c1d 100644 (file)
@@ -221,7 +221,7 @@ auth_server_lookup_request(struct auth_client_connection *conn,
        request = hash_table_lookup(conn->requests, POINTER_CAST(id));
        if (request == NULL) {
                e_error(conn->event,
-                       "BUG: Authentication server sent unknown id %u", id);
+                       "Authentication server sent unknown id %u", id);
                return 0;
        }
        if (remove || auth_client_request_is_aborted(request))