From 5b700945fb0b33eec410de8979cae2fbf0d4f118 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 17 May 2023 22:26:41 -0400 Subject: services: ssh: Really rename openssh-challenge-response-authentication? Fixes up 9c161c1f0d, which renamed the accessor of but failed to adjust the single usage. * gnu/services/ssh.scm (openssh-config-file): Rename openssh-challenge-response-authentication? call to openssh-configuration-challenge-response-authentication?. --- gnu/services/ssh.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm index 427a0c6ba3..303beed9ff 100644 --- a/gnu/services/ssh.scm +++ b/gnu/services/ssh.scm @@ -524,7 +524,8 @@ of user-name/file-like tuples." (format port "PidFile ~a\n" #$(openssh-configuration-pid-file config)) (format port "ChallengeResponseAuthentication ~a\n" - #$(if (openssh-challenge-response-authentication? config) + #$(if (openssh-configuration-challenge-response-authentication? + config) "yes" "no")) (format port "UsePAM ~a\n" #$(if (openssh-configuration-use-pam? config) -- cgit 1.4.1