Displaying 20 results from an estimated 59 matches for "ut_typ".
Did you mean:
ut_type
1999 Dec 27
1
More patches to fix NetBSD compiling
...6 +264,16 @@
[AC_DEFINE(HAVE_SYSLEN_IN_UTMPX) AC_MSG_RESULT(yes); ],
[AC_MSG_RESULT(no)]
)
+AC_MSG_CHECKING([whether utmp.h has ut_pid field])
+AC_EGREP_HEADER(ut_pid, utmp.h,
+ [AC_DEFINE(HAVE_PID_IN_UTMP) AC_MSG_RESULT(yes); ],
+ [AC_MSG_RESULT(no)]
+)
+AC_MSG_CHECKING([whether utmp.h has ut_type field])
+AC_EGREP_HEADER(ut_type, utmp.h,
+ [AC_DEFINE(HAVE_TYPE_IN_UTMP) AC_MSG_RESULT(yes); ],
+ [AC_MSG_RESULT(no)]
+)
dnl Look for lastlog location
AC_ARG_WITH(lastlog,
--- configure.orig Mon Dec 27 09:15:10 1999
+++ configure Mon Dec 27 09:15:17 1999
@@ -2348,6 +2348,48 @@
fi
rm -f co...
2000 Mar 20
2
samba-2.0.7pre2 compilation on SunOS 4.1.4 with --with-utmp
...mbd/connection.c:328: structure has no member named `ut_user'
smbd/connection.c:329: structure has no member named `ut_id'
smbd/connection.c:332: structure has no member named `ut_pid'
smbd/connection.c: In function `utmp_yield':
smbd/connection.c:400: structure has no member named `ut_type'
smbd/connection.c:400: `DEAD_PROCESS' undeclared (first use in this function)
smbd/connection.c:400: (Each undeclared identifier is reported only once
smbd/connection.c:400: for each function it appears in.)
smbd/connection.c:401: structure has no member named `ut_exit'
smbd/connectio...
2009 Jul 15
2
ifultools on ppc debian
.../include -fpic -g -O2 -c
RS_fra_dim.c -o RS_fra_dim.o
In file included from /usr/include/endian.h:37,
from /usr/include/sys/types.h:217,
from /usr/include/stdlib.h:320,
from /usr/local/lib/R/include/R.h:28,
from ../inst/include/ut_type.h:18,
from ../inst/include/fra_dim.h:9,
from RS_fra_dim.c:20:
/usr/include/bits/endian.h:27:4: error: #error Both BIG_ENDIAN and
LITTLE_ENDIAN defined!
make: *** [RS_fra_dim.o] Error 1
ERROR: compilation failed for package ?ifultools?
* Removing ?/home/ssefick/ifu...
2000 Jan 27
1
Long awaited round 1 of NeXT patches.
...e.
Daimen, feel free to let me know what you applied and what your
rejecting and why.. so I can work on cleaning things up.
Andre, Only thing of note you may want to look into is NeXT does not
use "ut_user" in it's lastlog. It uses "ut_name" and it does not
have a "ut_type" (It's part of the above patch in the login.c
part).
BTW, this patch is against 1.2.2 (since it was released before I was
able to relase my patch. =)
Known issues with my port (and my internal tree):
1) lack of utmp entries. I think I know what is wrong.
2) lack of signal capturing...
2000 May 26
4
openssh-2.1.0p2 ans Solaris 8
...tty login@ idle JCPU PCPU what
root console 11:43am 9 bash
#
Record about my pts/1 login is absent. Next command I run from Solaris 8
console after my ssh session is finished
#who
root console May 26 11:43
who: Error --- entry has ut_type of 29808
when maximum is 9
who: Error --- entry has ut_type of 29808
when maximum is 9
#
Do anyone has some ideas?
Max
2000 Jul 01
0
Problem with cleaning utmp entry
...happy if problem with libc5 and logging could be solved.
Greetings
PS. Part of ./configure that may be useful:
checking for ut_host field in utmp.h... yes
checking for ut_host field in utmpx.h... no
checking for syslen field in utmpx.h... no
checking for ut_pid field in utmp.h... yes
checking for ut_type field in utmp.h... yes
checking for ut_type field in utmpx.h... no
checking for ut_tv field 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 u...
2000 Jul 04
0
AW: FreeBSD 3.5-STABLE
...{
- if (strncmp(li->username, ut->ut_user,
- MIN_SIZEOF(li->username, ut->ut_user)) == 0) {
+ if (strncmp(li->username, ut->ut_name,
+ MIN_SIZEOF(li->username, ut->ut_name)) == 0) {
# ifdef HAVE_TYPE_IN_UTMP
if (ut->ut_type & USER_PROCESS)
return 1;
@@ -1161,7 +1161,7 @@
static int
wtmpx_islogin(struct logininfo *li, struct utmpx *utx)
{
- if ( strncmp(li->username, utx->ut_user,
+ if ( strncmp(li->username, utx->ut_name,
MIN_SIZEOF(li->usernam...
2002 Aug 02
0
[Bug 378] New: sshd does not update utmp/utmpx records correctly when "UseLogin" feature on
...d writes into the
utmp/utmpx records, Irix's login/scheme code will
update it with some other info. However, since the
records were not updated properly by sshd, login/scheme
basically ignores updating the records. I'll explain why
below.
-in the utmp/utmpx records, there is field, ut_type
that records what state the record/user is in, i.e.
#define EMPTY 0
#define RUN_LVL 1
#define BOOT_TIME 2
#define OLD_TIME 3
#define NEW_TIME 4
#define INIT_PROCESS 5 /* Process spawned by "init" */
#define LOGIN_PROCESS 6 /...
2000 May 12
0
SunOS 4.x port
This is based on openssh-2.0.0beta1. There are a few rough spots:
1) SunOS doesn't have ut_type in struct utmp so I just whacked
in the old login() from openssh-1.2.3.
2) There is a SUNOS4 section added to defines.h -- this could probably
be a bit cleaner.
3) sigaction on SunOS is implemented via #defines to sigvec, thus there
is no SA_RESTART (this is the default behavior).
T...
2001 Jun 29
1
wtmpx problem on Solaris 8 sparcv9 (64bit) environment
...ncpy(futx->ut_user, utx->ut_user, sizeof(futx->ut_user));
+ strncpy(futx->ut_id, utx->ut_id, sizeof(futx->ut_id));
+ strncpy(futx->ut_line, utx->ut_line, sizeof(futx->ut_line));
+ futx->ut_pid = (pid32_t)utx->ut_pid;
+ futx->ut_type = (int16_t)utx->ut_type;
+ futx->ut_exit.e_termination = (int16_t)utx->ut_exit.e_termination;
+ futx->ut_exit.e_exit = (int16_t)utx->ut_exit.e_exit;
+ futx->ut_tv.tv_sec = (time32_t)utx->ut_tv.tv_sec;
+ futx->ut_tv.tv_us...
2000 Jun 14
1
OpenSSH 2.1.1p1 on SCO Unixware 7.1.0
...checking for struct sockaddr_in6... yes
checking for struct in6_addr... yes
checking for struct addrinfo... yes
checking for ut_host field in utmp.h... no
checking for ut_host field in utmpx.h... yes
checking for syslen field in utmpx.h... yes
checking for ut_pid field in utmp.h... yes
checking for ut_type field in utmp.h... yes
checking for ut_type field in utmpx.h... yes
checking for ut_tv field 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 u...
2000 Jul 03
0
FreeBSD 3.5-STABLE
...ecking for struct sockaddr_in6... no
checking for struct in6_addr... no
checking for struct addrinfo... no
checking for ut_host field in utmp.h... yes
checking for ut_host field in utmpx.h... no
checking for syslen field in utmpx.h... no
checking for ut_pid field in utmp.h... no
checking for ut_type field in utmp.h... no
checking for ut_type field in utmpx.h... no
checking for ut_tv field in utmp.h... no
checking for ut_id 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 u...
2000 May 17
4
Openssh-2.1.0p1 test release
This to announce a test release of 2.1.0p1 before making it widely
available.
This release includes many fixes to problems reported over the last
week. In particular:
- spurious error and coredumps caused by the inbuilt entropy gathering
- RSAref detection
- Compilation fixes for Solaris and others
It also contains (completely untested) support for compiling without
RSA support. This may be
1999 Dec 24
5
ANNOUNCE: openssh-1.2.1pre20
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
openssh-1.2.1pre20 has been released at:
http://violet.ibs.com.au/openssh/files/
This release integrates more of Andre Lucas' portability patch, Ben
Taylor's utmpx patch and some cleanups and bugfixes of my own.
The auth-passwd failures should be fixed, as should lastlog support on
NetBSD.
Since Andre Lucas' patch included platform
1999 Dec 24
5
ANNOUNCE: openssh-1.2.1pre20
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
openssh-1.2.1pre20 has been released at:
http://violet.ibs.com.au/openssh/files/
This release integrates more of Andre Lucas' portability patch, Ben
Taylor's utmpx patch and some cleanups and bugfixes of my own.
The auth-passwd failures should be fixed, as should lastlog support on
NetBSD.
Since Andre Lucas' patch included platform
2000 May 30
0
utmpx bug in openssh-2.1.0p2 using Solaris 8
Hi,
I've installed openssh-2.1.0p2 on a Solaris 8 host (SPARC). The sshd
corrupts utmpx/wtmpx when a client connects to this machine. Observable
error:
$ who
who: Error --- entry has ut_type of 28265
when maximum is 9
It can be repeated and is attributable to the login done by sshd. Now,
Solaris has only utmpx/wtmpx and not the old utmp/wtmp. It get's worse
as more logins take place until utmpx is so corrupted that user login at
console is refused by the system.
A look at bsd-l...
2000 Jan 18
1
Error when compiling for Solaris7
...er to build GNOME ssh-askpass... no
checking for /dev/urandom... (cached) no
checking whether utmp.h has ut_host field... no
checking whether utmpx.h has ut_host field... yes
checking whether utmpx.h has syslen field... yes
checking whether utmp.h has ut_pid field... yes
checking whether utmp.h has ut_type field... yes
checking whether utmp.h has ut_tv field... no
checking whether utmp.h has ut_id field... yes
checking whether utmp.h has ut_addr field... no
checking whether utmpx.h has ut_addr field... no
checking whether utmp.h has ut_addr_v6 field... no
checking whether utmpx.h has ut_addr_v6 fiel...
2001 Oct 26
2
problems building on solaris 2.6
...... no
checking for struct in6_addr... no
checking for struct addrinfo... no
checking for struct timeval... yes
checking for ut_host field in utmp.h... no
checking for ut_host field in utmpx.h... yes
checking for syslen field in utmpx.h... yes
checking for ut_pid field in utmp.h... yes
checking for ut_type field in utmp.h... yes
checking for ut_type field in utmpx.h... yes
checking for ut_tv field in utmp.h... no
checking for ut_id field 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_a...
1999 Dec 23
0
Patch to make pre19 work with NetBSD
The pre19 code assumes that struct lastlog either exists in lastlog.h or
isn't there. On NetBSD, struct lastlog is defined in utmp.h. Even worse,
the non-lastlog code in login.h is terrible on NetBSD (since NetBSD
doesn't have a ut_type struct member).
With the patch below, openssh will compile and run on NetBSD again.
Thanks,
David
--- configure.orig Tue Dec 21 06:51:22 1999
+++ configure Thu Dec 23 14:15:16 1999
@@ -2073,12 +2073,43 @@
fi
rm -f conftest*
-echo $ac_n "checking whether pam_strerror takes only one ar...
2002 Jul 23
2
Irix UseLogin wtmp/utmp bug
I am using the "UseLogin yes" configuration parameter to call the
/usr/bin/login program on SGI Irix, (we are using Irix version
6.5.13). I do this because the SGI login program is AFS awhere and
checks out a token for you and I do not want to compile the Kerberos
version of sshd, (it is to messy for me to support).
Everything seems to work fine accept the wtmp(x) and utmp(x) files do