aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2026-05-12 22:49:29 +0000
committerEd Maste <emaste@FreeBSD.org>2026-05-12 22:51:00 +0000
commitb76b05c04cc9ed2cd053c7b367c92628447ede6f (patch)
tree960b9231b08875eba6741c36da4ae77c123a584a
parente68aa5ab80ab57bdbcbe94dd2922a018d675e7f0 (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.c2
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;