diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2026-05-12 22:49:29 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2026-05-12 22:51:00 +0000 |
| commit | b76b05c04cc9ed2cd053c7b367c92628447ede6f (patch) | |
| tree | 960b9231b08875eba6741c36da4ae77c123a584a | |
| parent | e68aa5ab80ab57bdbcbe94dd2922a018d675e7f0 (diff) | |
pam_ssh: Fix build - chase OpenSSH function signature change
Reported by: dch
Fixes: 644b4646c7ac ("OpenSSH: Update to 10.1p1")
Sponsored by: The FreeBSD Foundation
| -rw-r--r-- | lib/libpam/modules/pam_ssh/pam_ssh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpam/modules/pam_ssh/pam_ssh.c b/lib/libpam/modules/pam_ssh/pam_ssh.c index 157908b6b910..1fcee93efb69 100644 --- a/lib/libpam/modules/pam_ssh/pam_ssh.c +++ b/lib/libpam/modules/pam_ssh/pam_ssh.c @@ -62,7 +62,7 @@ #include "sshkey.h" #define ssh_add_identity(auth, key, comment) \ - ssh_add_identity_constrained(auth, key, comment, 0, 0, 0, NULL, NULL, 0) + ssh_add_identity_constrained(auth, key, comment, 0, 0, NULL, NULL, 0) extern char **environ; |
