From a379db1037176881e86d9a1eadc1a32e3b93ca17 Mon Sep 17 00:00:00 2001 From: Arran Cudbard-Bell Date: Sun, 13 Jul 2025 18:14:19 -0600 Subject: [PATCH] Don't pass a pointer to the password value box... --- src/modules/rlm_rest/rlm_rest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/rlm_rest/rlm_rest.c b/src/modules/rlm_rest/rlm_rest.c index b019c16c7d..cddd8da574 100644 --- a/src/modules/rlm_rest/rlm_rest.c +++ b/src/modules/rlm_rest/rlm_rest.c @@ -831,7 +831,7 @@ static unlang_action_t CC_HINT(nonnull) mod_authenticate(unlang_result_t *p_resu * Log the password */ if (RDEBUG_ENABLED3) { - RDEBUG("Login attempt with password \"%pV\"", &call_env->request.password); + RDEBUG("Login attempt with password \"%pV\"", call_env->request.password); } else { RDEBUG2("Login attempt with password"); } -- 2.47.2