From 44377ad8939a2497f4bc4d84add9614320fb4f0c Mon Sep 17 00:00:00 2001 From: Dominik Date: Sat, 27 Apr 2024 06:38:39 +0200 Subject: [PATCH] Address review comments Co-authored-by: RD WebDesign Signed-off-by: Dominik --- src/api/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/auth.c b/src/api/auth.c index 60c25000d..88c8d10b6 100644 --- a/src/api/auth.c +++ b/src/api/auth.c @@ -82,7 +82,7 @@ int check_client_auth(struct ftl_conn *api, const bool is_api) // This may be allowed without authentication depending on the configuration if(!config.webserver.api.localAPIauth.v.b && is_local_api_user(api->request->remote_addr)) { - api->message = "no auth for local user"; + api->message = "no auth required for local user"; add_request_info(api, NULL); return API_AUTH_LOCALHOST; }