Displaying 1 result from an estimated 1 matches for "have_bsd_auth_h".
2001 Feb 16
1
OpenSSH 2.3.0p1 port to BSDI BSD/OS
...so fixes a misplaced #ifdef in the
OpenSSH distribution in bsd-vis.c.
After applying this patch, run "autoreconf".
Index: auth1.c
--- auth1.c 2001/02/13 07:43:16 1.1
+++ auth1.c 2001/02/13 22:00:06
@@ -28,6 +28,12 @@
#include "auth.h"
#include "session.h"
+#ifdef HAVE_BSD_AUTH_H
+# include <login_cap.h>
+# include <bsd_auth.h>
+static char *bsduser=NULL; /* XXX -- ugly, but we need the original */
+#endif
+
/* import */
extern ServerOptions options;
extern char *forced_command;
@@ -258,7 +264,10 @@
NULL, password) == SIASUCCESS) {
authenticated = 1...