Displaying 1 result from an estimated 1 matches for "utmptest".
2001 Jun 29
1
wtmpx problem on Solaris 8 sparcv9 (64bit) environment
...e object is used instead of utmpx
structure object.
The system is as follows.
OpenSSH Version: 2.9p2
OS:
% uname -a
SunOS foo 5.8 Generic_108528-06 sun4u sparc SUNW,UltraSPARC-IIi-cEngine
% isainfo -v
64-bit sparcv9 applications
32-bit sparc applications
Please look at reference.
% cat utmptest.c
#include <stdio.h>
#include <utmp.h>
#include <utmpx.h>
main ()
{
struct utmp utmp;
struct futmp futmp;
struct utmpx utmpx;
struct futmpx futmpx;
printf("utmp: %d, futmp: %d / utmpx: %d, futmpx: %d\n",
sizeof(utmp), sizeof(futmp), sizeof(...