summaryrefslogtreecommitdiff
path: root/servconf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-14 15:11:48 +1000
committerDamien Miller <djm@mindrot.org>2003-05-14 15:11:48 +1000
commit4e448a31ae12e6f84caa7cdfc8b4c23db92459db (patch)
tree8f4c0885c8c91456b4d27d7f405e9125b83491a4 /servconf.h
parent9c617693c2250c62e5e326372bc783e3416a94b0 (diff)
- (djm) Add new UsePAM configuration directive to allow runtime control
over usage of PAM. This allows non-root use of sshd when built with --with-pam
Diffstat (limited to 'servconf.h')
-rw-r--r--servconf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/servconf.h b/servconf.h
index 024987dd6..afa80675e 100644
--- a/servconf.h
+++ b/servconf.h
@@ -131,7 +131,7 @@ typedef struct {
131 131
132 char *authorized_keys_file; /* File containing public keys */ 132 char *authorized_keys_file; /* File containing public keys */
133 char *authorized_keys_file2; 133 char *authorized_keys_file2;
134 int pam_authentication_via_kbd_int; 134 int use_pam; /* Enable auth via PAM */
135} ServerOptions; 135} ServerOptions;
136 136
137void initialize_server_options(ServerOptions *); 137void initialize_server_options(ServerOptions *);