]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Don't pass a pointer to the password value box...
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 14 Jul 2025 00:14:19 +0000 (18:14 -0600)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 14 Jul 2025 01:37:39 +0000 (19:37 -0600)
src/modules/rlm_rest/rlm_rest.c

index b019c16c7d2bf03fc46c61808f7a5fda59c3fe06..cddd8da5743b9cfb06439bb242a3e14073fdce0f 100644 (file)
@@ -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");
        }