From aac5a99f78ba5ed4709b30e4176fd62bd4964c70 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 4 Sep 2019 15:38:09 +0300 Subject: [PATCH] lib-auth: Remove "BUG:" prefix from "Authentication server sent unknown id" error It's not necessarily a bug. --- src/lib-auth/auth-client-connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib-auth/auth-client-connection.c b/src/lib-auth/auth-client-connection.c index c372aa7333..2ecbb7b60d 100644 --- a/src/lib-auth/auth-client-connection.c +++ b/src/lib-auth/auth-client-connection.c @@ -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)) -- 2.47.3