Displaying 6 results from an estimated 6 matches for "_path_btmp".
2005 Jan 20
27
[Bug 974] Record Badlogins for all supported Authentication methods
http://bugzilla.mindrot.org/show_bug.cgi?id=974
dtucker at zip.com.au changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |enhancement
Platform|HPPA |All
Summary|Enhancement : Record |Record Badlogins for
2012 May 09
1
warning from configuring openssh-6.0p1
...e HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_UTMPX_H 1
| #define HAVE_LASTLOG_H 1
| #define HAVE_SYS_MOUNT_H 1
| #define PAM_TTY_KLUDGE 1
| #define LOCKED_PASSWD_PREFIX "!"
| #define SPT_TYPE SPT_REUSEARGV
| #define LINK_OPNOTSUPP_ERRNO EPERM
| #define _PATH_BTMP "/var/log/btmp"
| #define USE_BTMP 1
| #define LINUX_OOM_ADJUST 1
| #define HAVE_LINUX_IF_TUN_H 1
| #define SSH_TUN_LINUX 1
| #define SSH_TUN_COMPAT_AF 1
| #define SSH_TUN_PREPEND_AF 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types....
2005 Aug 26
0
Patch for UnixWare 7
...h/defines.h.old 2005-08-23 17:18:21.000000000 -0700
+++ openssh/defines.h 2005-08-24 16:51:30.367680004 -0700
@@ -688,6 +688,10 @@
# define CUSTOM_SYS_AUTH_PASSWD 1
#endif
+#ifdef UNIXWARE_LONG_PASSWORDS
+# define CUSTOM_SYS_AUTH_PASSWD 1
+#endif
+
/* HP-UX 11.11 */
#ifdef BTMP_FILE
# define _PATH_BTMP BTMP_FILE
--- openssh/includes.h.old 2005-08-23 11:02:30.213506000 -0700
+++ openssh/includes.h 2005-08-24 16:51:30.387680002 -0700
@@ -169,6 +169,10 @@
# include <ia.h>
#endif
+#ifdef HAVE_IAF_H
+# include <iaf.h>
+#endif
+
#ifdef HAVE_TMPDIR_H
# include <tmpdir.h>
#endif...
2009 Apr 08
3
libedit not found on SUse 11.1
Included below is a diff between the output from configure on a 64 bit
SUse 11.1 (doesn't find libedit) and a 64 bit Suse 10.3 (does find
libedit) for otherwise identical setups.
1. How can I get the output set up to look at conftest.c?
2. I added a set -x to configure above LIBEDIT_MSG=no
3. ./configure --with-ldflags="-L/usr/lib64" --with-cflags="-ggdb3
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...EOF_LONG_LONG_INT 8
#define SIZEOF_SHORT_INT 2
/* #undef SSH_AUDIT_EVENTS */
#define STDC_HEADERS 1
/* #undef UNIXWARE_LONG_PASSWORDS */
/* #undef USE_BSM_AUDIT */
#define USE_BTMP 1
/* #undef USE_LIBEDIT */
/* #undef WORDS_BIGENDIAN */
#define _FILE_OFFSET_BITS 64
/* #undef _LARGE_FILES */
#define _PATH_BTMP "/var/log/btmp"
/* #undef inline */
/* #undef socklen_t */
2005 Jul 26
1
Linux in-kernel keys support
...diff -ubr -x configure openssh-4.1p1/configure.ac openssh-4.1p1-hacked/configure.ac
--- openssh-4.1p1/configure.ac 2005-04-24 09:52:23.000000000 +0200
+++ openssh-4.1p1-hacked/configure.ac 2005-07-25 23:15:32.000000000 +0200
@@ -261,6 +261,7 @@
AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM)
AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
+ AC_CHECK_LIB(keyutil, keyctl_read)
inet6_default_4in6=yes
case `uname -r` in
1.*|2.0.*)
diff -ubr -x configure openssh-4.1p1/key.c openssh-4.1p1-hacked/key.c
--- openssh-4.1p1/ke...