Displaying 20 results from an estimated 45 matches for "ut_time".
Did you mean:
up_time
2000 Jul 01
0
Problem with cleaning utmp entry
...ield in utmp.h... no
checking for ut_id field in utmp.h... yes
checking for ut_addr field in utmp.h... yes
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... no
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... no
checking for ut_tv field in utmpx.h... no
PPS. Part of config.h (after doing configure):
/* struct utmp and struct utmpx fields */
#define HAVE_HOST_IN_UTMP 1
/* #undef HAVE_HOST_IN_UTMPX */
#define HAVE_ADDR_IN_UTMP 1
/* #undef HA...
2002 Jan 09
1
64-bit HP/UX 11.00 wtmp corruption identified
...wtmp entry to be 60 bytes
in size. So, when OpenSSH is built with 64-bit options, it writes 72
byte entries into the wtmp causing "last" to seg fault.
I do not know what a good work around could be. I temporarily modified
the /usr/include/utmp.h structure to use int32_t as the type for ut_time
instead of long and rebuilt loginrec.o and relinked sshd. OpenSSH
performed correctly, updating wtmp like a champ. I thought that we
could use utmpname and the pututline tools (which will convert the 72
byte structure to a 60 byte structure somehow), but their behavior is
not actually compatible...
2000 Jun 14
1
OpenSSH 2.1.1p1 on SCO Unixware 7.1.0
...ield in utmp.h... no
checking for ut_id field in utmp.h... yes
checking for ut_addr field in utmp.h... no
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... yes
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... yes
checking for ut_tv field in utmpx.h... yes
checking for ss_family field in struct sockaddr_storage... no
checking for __ss_family field in struct sockaddr_storage... no
checking if libc defines __progname... no
checking for rsh......
2000 Jul 03
0
FreeBSD 3.5-STABLE
...n utmp.h... no
checking for ut_id field in utmpx.h... no
checking for ut_addr field in utmp.h... no
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... no
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... no
checking for ut_tv field in utmpx.h... no
checking for ss_family field in struct sockaddr_storage... no
checking for __ss_family field in struct sockaddr_storage... no
checking if libc defines __progname... yes
checking for rs...
2001 Mar 06
0
Continued utmp probs with sshlogin.c
...^D\^A
This whacks w, who, and utmp. all the sizeof's seem ok for my 2.8 release
box:
Mar 5 21:22:47 frodo sshd[10274]: wtmp: sizeof(u)=36, sizeof(u.ut_host)=16
Mar 5 21:22:47 frodo sshd[10274]: wtmp: sizeof(u.ut_line)=8,
sizeof(u.ut_name)=8
Mar 5 21:22:47 frodo sshd[10274]: wtmp: sizeof(u.ut_time)=4
Any ideas?
- - -
Geoffrey T. Cheshire <gtc (at) cheshirelaw (dot) com>
PGP IDs: 0xA898DA75, 0x7B9C0691 (office), 0x43713B0D (RSA)
2001 Oct 26
2
problems building on solaris 2.6
...ld in utmp.h... yes
checking for ut_id field in utmpx.h... yes
checking for ut_addr field in utmp.h... no
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... yes
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... yes
checking for ut_tv field in utmpx.h... yes
checking for struct stat.st_blksize... yes
checking for ss_family field in struct sockaddr_storage... no
checking for __ss_family field in struct sockaddr_storage... no
checking for pw_cla...
2001 May 15
0
openssh 2.9p1 on Solaris 2.6 with AFS
...ld in utmp.h... yes
checking for ut_id field in utmpx.h... yes
checking for ut_addr field in utmp.h... no
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... yes
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... yes
checking for ut_tv field in utmpx.h... yes
checking for st_blksize in struct stat... yes
checking for sun_len field in struct sockaddr_un... no
checking for ss_family field in struct sockaddr_storage... no
checking for __ss_family...
1999 Dec 27
1
More patches to fix NetBSD compiling
...Mon Dec 27 09:22:55 1999
+++ login.c Mon Dec 27 09:23:00 1999
@@ -141,10 +141,14 @@
/* Construct an utmp/wtmp entry. */
memset(&u, 0, sizeof(u));
strncpy(u.ut_line, ttyname + 5, sizeof(u.ut_line));
+#if defined(HAVE_PID_IN_UTMP)
u.ut_pid = (pid_t)pid;
+#endif /* HAVE_PID_IN_UTMP */
u.ut_time = time(NULL);
strncpy(u.ut_name, user, sizeof(u.ut_name));
+#if defined(HAVE_TYPE_IN_UTMP)
u.ut_type = (uid == -1)?DEAD_PROCESS:USER_PROCESS;
+#endif /* HAVE_TYPE_IN_UTMP */
#if defined(HAVE_HOST_IN_UTMP)
strncpy(u.ut_host, host, sizeof(u.ut_host));
#endif
2000 Aug 26
0
New chroot patch, for 2.1.1p4
...t <<EOF
-#line 4191 "configure"
+#line 4193 "configure"
#include "confdefs.h"
#include <utmp.h>
EOF
@@ -4221,13 +4223,13 @@
ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'`
ossh_varname="ossh_cv_$ossh_safe""_has_"ut_time
echo $ac_n "checking for ut_time field in utmp.h""... $ac_c" 1>&6
-echo "configure:4225: checking for ut_time field in utmp.h" >&5
+echo "configure:4227: checking for ut_time field in utmp.h" >&5
if eval "test \"`echo '$...
1999 Dec 28
1
ANNOUNCE: openssh-1.2.1pre22
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I have just uploaded 1.2.1pre22 to:
http://violet.ibs.com.au/openssh/files/
This release consists of portability fixes and cleanups. It also
resolves two issues which may have caused security problems
- If you OS header files did not define PATH_STDPATH, then an
unsafe path was used by default (it contained an implicit '.').
Thanks
1999 Dec 28
1
ANNOUNCE: openssh-1.2.1pre22
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I have just uploaded 1.2.1pre22 to:
http://violet.ibs.com.au/openssh/files/
This release consists of portability fixes and cleanups. It also
resolves two issues which may have caused security problems
- If you OS header files did not define PATH_STDPATH, then an
unsafe path was used by default (it contained an implicit '.').
Thanks
2000 Oct 04
0
2.2.0p1 chroot patch
...t <<EOF
-#line 4294 "configure"
+#line 4296 "configure"
#include "confdefs.h"
#include <utmp.h>
EOF
@@ -4324,13 +4326,13 @@
ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'`
ossh_varname="ossh_cv_$ossh_safe""_has_"ut_time
echo $ac_n "checking for ut_time field in utmp.h""... $ac_c" 1>&6
-echo "configure:4328: checking for ut_time field in utmp.h" >&5
+echo "configure:4330: checking for ut_time field in utmp.h" >&5
if eval "test \"`echo '$...
2001 Apr 10
2
Compiling openssh 2.5.p1 on unixware 7.0.1
...h... (cached) yes
checking for ut_addr field in utmp.h... (cached) no
checking for ut_addr field in utmpx.h... (cached) no
checking for ut_addr_v6 field in utmp.h... (cached) no
checking for ut_addr_v6 field in utmpx.h... (cached) no
checking for ut_exit field in utmp.h... (cached) yes
checking for ut_time field in utmp.h... (cached) yes
checking for ut_time field in utmpx.h... (cached) yes
checking for ut_tv field in utmpx.h... (cached) yes
checking for st_blksize in struct stat... (cached) yes
checking for sun_len field in struct sockaddr_un... (cached) no
checking for ss_family field in struct soc...
2001 Jul 11
0
Solaris 2.6: Undefined symbol seed_rng
...ld in utmp.h... yes
checking for ut_id field in utmpx.h... yes
checking for ut_addr field in utmp.h... no
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... yes
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... yes
checking for ut_tv field in utmpx.h... yes
checking for st_blksize in struct stat... yes
checking for sun_len field in struct sockaddr_un... no
checking for ss_family field in struct sockaddr_storage... no
checking for __ss_family...
2000 Jul 08
1
sshd Pam problem for Redhat 6.2
...n utmp.h... yes
checking for ut_id field in utmpx.h... yes
checking for ut_addr field in utmp.h... yes
checking for ut_addr field in utmpx.h... yes
checking for ut_addr_v6 field in utmp.h... yes
checking for ut_addr_v6 field in utmpx.h... yes
checking for ut_exit field in utmp.h... yes
checking for ut_time field in utmp.h... no
checking for ut_time field in utmpx.h... no
checking for ut_tv field in utmpx.h... yes
checking for ss_family field in struct sockaddr_storage... no
checking for __ss_family field in struct sockaddr_storage... yes
checking if libc defines __progname... yes
checking for rsh......
2006 Feb 06
1
Compile warning report of openssh 4.3p1 on Intel Macs
...field in utmp.h... no
checking for ut_id field in utmpx.h... no
checking for ut_addr field in utmp.h... no
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... no
checking for ut_time field in utmp.h... no
checking for ut_time field in utmpx.h... no
checking for ut_tv field in utmpx.h... no
checking for struct stat.st_blksize... yes
checking for struct __res_state.retrans... yes
checking for ss_family field in struct sockaddr_storage... yes
checking for __ss_family field in stru...
2006 Apr 23
0
Configuration Warnings OpenSSH 4.3p2
...field in utmp.h... no
checking for ut_id field in utmpx.h... no
checking for ut_addr field in utmp.h... no
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... no
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... no
checking for ut_tv field in utmpx.h... no
checking for struct stat.st_blksize... yes
checking for struct __res_state.retrans... no
checking for ss_family field in struct sockaddr_storage... yes
checking for __ss_family field in stru...
2011 Sep 02
1
problems building openssh-5.8p1 on qnx
...eld in utmp.h... yes
checking for ut_id field in utmpx.h... no
checking for ut_addr field in utmp.h... no
checking for ut_addr field in utmpx.h... no
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... yes
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... no
checking for ut_tv field in utmpx.h... no
checking for struct stat.st_blksize... yes
checking for struct __res_state.retrans... yes
checking for ss_family field in struct sockaddr_storage... yes
checking for __ss_family field in str...
2002 Dec 25
1
Trouble installing samba
...for pututxline... no
> checking for updwtmp... no
> checking for updwtmpx... no
> checking for getutmpx... no
> checking for ut_name in utmp... yes
> checking for ut_user in utmp... yes
> checking for ut_id in utmp... yes
> checking for ut_host in utmp... yes
> checking for ut_time in utmp... yes
> checking for ut_tv in utmp... yes
> checking for ut_type in utmp... yes
> checking for ut_pid in utmp... yes
> checking for ut_exit in utmp... yes
> checking for ut_addr in utmp... yes
> checking for ut_syslen in utmpx... no
> checking for Linux kernel oplocks....
2001 Nov 07
1
Configuring 2.2.2 (or 2.0.7) on Digital Unix 4.0f fails - "No locking"
...checking for pututline... yes
checking for pututxline... yes
checking for updwtmp... no
checking for updwtmpx... no
checking for getutmpx... no
checking for ut_name in utmp... yes
checking for ut_user in utmp... yes
checking for ut_id in utmp... yes
checking for ut_host in utmp... yes
checking for ut_time in utmp... yes
checking for ut_tv in utmp... no
checking for ut_type in utmp... yes
checking for ut_pid in utmp... yes
checking for ut_exit in utmp... yes
checking for ut_addr in utmp... no
checking whether pututline returns pointer... yes
checking for ut_syslen in utmpx... no
checking for Linux ke...