summary refs log tree commit diff
path: root/gnu
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-05-17 22:26:41 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-05-17 22:26:41 -0400
commit5b700945fb0b33eec410de8979cae2fbf0d4f118 (patch)
treee871516fe11f6df2492dadce1c0a88041da378e8 /gnu
parent9c161c1f0def13676002ce34625ba023857b9ab2 (diff)
downloadguix-5b700945fb0b33eec410de8979cae2fbf0d4f118.tar.gz
services: ssh: Really rename openssh-challenge-response-authentication?
Fixes up 9c161c1f0d, which renamed the accessor of <openssh-configuration> 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?.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/services/ssh.scm3
1 files changed, 2 insertions, 1 deletions
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)