Displaying 12 results from an estimated 12 matches for "use_utmp".
Did you mean:
use_utmpx
2024 Oct 14
1
openssh 9.9p1
The following alteration needs to be made to loginrec.c in the routine
record_failed_login()
#ifdef USE_UTMP
??????? construct_utmp(&li, &ut);
#endif
It was missing "#ifdef USE_UTMP" which causes an problem if you are not
using UTMP.
gt
2001 Jun 06
1
One more UseLogin tweak
...ininfo structure. The
following patch takes care of this:
--- old/loginrec.c Wed Jun 6 11:12:14 2001
+++ loginrec.c Wed Jun 6 11:13:42 2001
@@ -448,6 +448,8 @@
login_utmp_only(struct logininfo *li)
{
li->type = LTYPE_LOGIN;
+ /* set the timestamp */
+ login_set_current_time(li);
# ifdef USE_UTMP
utmp_write_entry(li);
# endif
..wayne..
2002 Apr 22
0
[Bug 224] New: configure.ac changes for crays
...Mon Apr 22 14:32:48 2002
@@ -236,12 +236,29 @@
AC_CHECK_FUNCS(getluid setluid)
MANTYPE=man
;;
+*-*-unicosmk*)
+ no_libsocket=1
+ no_libnsl=1
+ not_sco=1
+ MANTYPE=cat
+ AC_DEFINE(USE_PIPES)
+ AC_DEFINE(LOGIN_NEEDS_UTMPX)
+ AC_DEFINE(USE_UTMP)
+ AC_DEFINE(USE_WTMP)
+ LDFLAGS="$LDFLAGS -L/usr/local/lib"
+ LIBS="$LIBS -lshare -lgen -lrsc -luex -lacm"
+ ;;
*-*-unicos*)
no_libsocket=1
no_libnsl=1
+ not_sco=1
+ MANTYPE=cat
AC_DEFINE(USE_PIPES)
+ AC_DEFINE(...
2002 Apr 22
0
[Bug 224] configure.ac changes for crays
...Mon Apr 22 14:32:48 2002
@@ -236,12 +236,29 @@
AC_CHECK_FUNCS(getluid setluid)
MANTYPE=man
;;
+*-*-unicosmk*)
+ no_libsocket=1
+ no_libnsl=1
+ not_sco=1
+ MANTYPE=cat
+ AC_DEFINE(USE_PIPES)
+ AC_DEFINE(LOGIN_NEEDS_UTMPX)
+ AC_DEFINE(USE_UTMP)
+ AC_DEFINE(USE_WTMP)
+ LDFLAGS="$LDFLAGS"
+ LIBS="$LIBS -lshare -lgen -lrsc -luex -lacm"
+ ;;
*-*-unicos*)
no_libsocket=1
no_libnsl=1
+ not_sco=1
+ MANTYPE=cat
AC_DEFINE(USE_PIPES)
+ AC_DEFINE(LOGIN_NEEDS_UTMPX...
2001 Oct 08
2
Porting OpenSSH 2.9.9p2 to Dynix V4.4.4
Hello Porters,
I am attempting to compile OpenSSH 2.9.9p2 on a Dynix V4.4.4 host.
I have set USE_PIPES and BROKEN_SAVED_UIDS (the latter because there are
no functions for set{eu,eg}id() that I can find). I configured with
"./configure '--with-libs=-lnsl -lsec'".
Each time I attempt to login, I get this error:
No utmp entry. You must exec "login" from
2001 Jun 21
0
Output of last command is strange on Solaris 2.6/8 (OpenSSH 2.9p2)
...pts/3 bar.foo.co.jp Thu Jun 21 12:45 - 20:02 (07:16)
hoge pts/2 foo.bar.co.jp Thu Jun 21 11:12 - 15:30 (04:17)
...
--- openssh-2.9p2.orig/loginrec.c Wed May 9 05:34:33 2001
+++ openssh-2.9p2/loginrec.c Thu Jun 21 20:23:58 2001
@@ -451,15 +451,19 @@
# ifdef USE_UTMP
utmp_write_entry(li);
# endif
+#ifndef __sun
# ifdef USE_WTMP
wtmp_write_entry(li);
# endif
+#endif
# ifdef USE_UTMPX
utmpx_write_entry(li);
# endif
+#ifndef __sun
# ifdef USE_WTMPX
wtmpx_write_entry(li);
# endif
+#endif
return 0;
}
#endif
If there...
2001 Aug 21
0
Resend: loginrec.c patch
...case it got lost.
The first hunk of the patch fixes a problem with the LOGIN_NEEDS_UTMPX
support in that the date was not being set in the logininfo structure
(causing wrong timestamps in the "last" log).
The second hunk just omits the USE_WTMPX code in the LOGIN_NEEDS_UTMPX
section if USE_UTMPX is defined. This prevents duplicate events in the
last log under Solaris.
Neither of these changes affect the non-LOGIN_NEEDS_UTMPX code.
..wayne..
---8<------8<------8<------8<---cut here--->8------>8------>8------>8---
Index: loginrec.c
--- loginrec.c 2001/08/06 23:29...
2002 Dec 29
0
[Bug 460] New: ut_addr_v6 not used
...ostaddr.sa);
+ memcpy(ut->ut_addr_v6, sa6->sin6_addr.s6_addr, 16);
+ if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) {
+ ut->ut_addr_v6[0] = ut->ut_addr_v6[3];
+ ut->ut_addr_v6[1] = 0;
+ ut->ut_addr_v6[2] = 0;
+ ut->ut_addr_v6[3] = 0;
+ }
+ }
+# endif
}
#endif /* USE_UTMP || USE_WTMP || USE_LOGIN */
@@ -689,6 +705,9 @@
void
construct_utmpx(struct logininfo *li, struct utmpx *utx)
{
+# ifdef HAVE_ADDR_V6_IN_UTMP
+ struct sockaddr_in6 *sa6;
+# endif
memset(utx, '\0', sizeof(*utx));
# ifdef HAVE_ID_IN_UTMPX
line_abbrevname(utx->ut_id, li->line,...
2001 Apr 29
2
PATCH: UseLogin fix for 2.9p1 (w/improved last-login time)
...C_MSG_CHECKING(for obsolete utmp and wtmp in solaris2.x)
Index: loginrec.c
--- loginrec.c 2001/02/22 21:23:21 1.32
+++ loginrec.c 2001/04/29 18:12:40
@@ -443,6 +443,27 @@
return 0;
}
+#ifdef LOGIN_NEEDS_UTMPX
+int
+login_utmp_only(struct logininfo *li)
+{
+ li->type = LTYPE_LOGIN;
+# ifdef USE_UTMP
+ utmp_write_entry(li);
+# endif
+# ifdef USE_WTMP
+ wtmp_write_entry(li);
+# endif
+# ifdef USE_UTMPX
+ utmpx_write_entry(li);
+# endif
+# ifdef USE_WTMPX
+ wtmpx_write_entry(li);
+# endif
+ return 0;
+}
+#endif
+
/**
** getlast_entry: Call low-level functions to retrieve the last login
**...
2001 Oct 23
8
Another round of testing calls.
Outside the known 'Hang-on-exit' bug and the Solaris 'PAM_TTY_KLUDGE'
required. *WHAT* other issues *MUST* be address before 3.0 which is
approaching fast?
Those running NeXTStep I need conformation that it works under NeXT. My
current Slab is packed in a storage unit due to a fire in my apartment
complex (happened above me so I'm wrapping up dealing with that crap =).
-
2001 Sep 14
8
Call for testers.
http://bass.directhit.com/openssh_snap/
Starting tonight I plan on tracking changes very closely with the OpenBSD
tree. I need people to test the latest snapshot (9/14 at of right now)
and report success or failure on compiling.
I am starting this now because we are looking at a code freeze soon and I
really want to ensure it compiles and runs on all existing platforms. So
we (the portable
2013 Feb 26
16
Call for testing: OpenSSH-6.2
Hi,
It's that time again...
OpenSSH 6.2 is almost ready for release, so we would appreciate testing
on as many platforms and systems as possible. This release contains
some substantial new features and a number of bugfixes.
Snapshot releases for portable OpenSSH are available from
http://www.mindrot.org/openssh_snap/
The OpenBSD version is available in CVS HEAD: