]> andersk Git - openssh.git/commitdiff
- (djm) Enable UsePAM when built --with-pam
authordjm <djm>
Thu, 15 May 2003 04:16:41 +0000 (04:16 +0000)
committerdjm <djm>
Thu, 15 May 2003 04:16:41 +0000 (04:16 +0000)
ChangeLog
servconf.c

index 7f4c5edba62237a8e3638c7a9e79b3d921c83731..1411b2826a6f68cfa59ed56c0c95c81335254d9d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      [sftp-int.c sftp.c]
      Teach ls how to display multiple column display and allow users 
      to return to single column format via 'ls -1'.  OK @djm
+   - jakob@cvs.openbsd.org 2003/05/15 04:08:44
+     [readconf.c servconf.c]
+     disable kerberos when not supported. ok markus@
  - (djm) Always parse UsePAM
  - (djm) Configure glue for DNS support (code doesn't work in portable yet)
  - (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support)
  - (djm) Tidy Makefile clean targets
  - (djm) Adapt README.dns for portable
  - (djm) Avoid uuencode.c warnings
+ - (djm) Enable UsePAM when built --with-pam
 
 20030514
  - (djm) Bug #117: Don't lie to PAM about username
      http://bugzilla.mindrot.org/show_bug.cgi?id=560
      Privsep child continues to run after monitor killed.
      Pass monitor signals through to child; Darren Tucker
-   - jakob@cvs.openbsd.org 2003/05/15 04:08:44
-     [readconf.c servconf.c]
-     disable kerberos when not supported. ok markus@
  - (djm) Make portable build with MIT krb5 (some issues remain)
  - (djm) Add new UsePAM configuration directive to allow runtime control
    over usage of PAM. This allows non-root use of sshd when built with
index 92d3170b23b7a318dd1adc96e4d85415645f0744..5840961e3870dab529b781d811985c580109a21a 100644 (file)
@@ -131,7 +131,11 @@ fill_default_server_options(ServerOptions *options)
 {
        /* Portable-specific options */
        if (options->use_pam == -1)
+#ifdef USE_PAM
+               options->use_pam = 1;
+#else
                options->use_pam = 0;
+#endif
 
        /* Standard Options */
        if (options->protocol == SSH_PROTO_UNKNOWN)
This page took 1.770975 seconds and 5 git commands to generate.