FreeBSD Bugzilla – Attachment 194396 Details for
Bug 229147
security/openssh-portable: fix incorrect use_pam initialization
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
rebuilt patchfile
patch-servconf.c (text/plain), 1.30 KB, created by
Robert Schulze
on 2018-06-19 09:46:03 UTC
(
hide
)
Description:
rebuilt patchfile
Filename:
MIME Type:
Creator:
Robert Schulze
Created:
2018-06-19 09:46:03 UTC
Size:
1.30 KB
patch
obsolete
>--- servconf.c.orig 2018-06-19 09:26:26 UTC >+++ servconf.c >@@ -63,6 +63,7 @@ > #include "auth.h" > #include "myproposal.h" > #include "digest.h" >+#include "version.h" > > static void add_listen_addr(ServerOptions *, const char *, > const char *, int); >@@ -240,7 +241,11 @@ fill_default_server_options(ServerOption > > /* 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->num_host_key_files == 0) { >@@ -280,7 +285,7 @@ fill_default_server_options(ServerOption > if (options->print_lastlog == -1) > options->print_lastlog = 1; > if (options->x11_forwarding == -1) >- options->x11_forwarding = 0; >+ options->x11_forwarding = 1; > if (options->x11_display_offset == -1) > options->x11_display_offset = 10; > if (options->x11_use_localhost == -1) >@@ -320,7 +325,11 @@ fill_default_server_options(ServerOption > if (options->gss_strict_acceptor == -1) > options->gss_strict_acceptor = 1; > if (options->password_authentication == -1) >+#ifdef USE_PAM >+ options->password_authentication = 0; >+#else > options->password_authentication = 1; >+#endif > if (options->kbd_interactive_authentication == -1) > options->kbd_interactive_authentication = 0; > if (options->challenge_response_authentication == -1)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 229147
: 194396