Displaying 3 results from an estimated 3 matches for "utmpx_write_direct".
Did you mean:
utmp_write_direct
2001 Jun 29
1
wtmpx problem on Solaris 8 sparcv9 (64bit) environment
...def __sparcv9
+utmpx_write_library(struct logininfo *li, struct utmpx *utx)
+#else
utmpx_write_library(struct logininfo *li, struct utmpx *utx)
+#endif
{
setutxent();
pututxline(utx);
@@ -902,7 +910,11 @@
/* write a utmp entry direct to the file */
static int
+#ifdef __sparcv9
+utmpx_write_direct(struct logininfo *li, struct futmpx *utx)
+#else
utmpx_write_direct(struct logininfo *li, struct utmpx *utx)
+#endif
{
log("utmpx_write_direct: not implemented!");
return 0;
@@ -1144,7 +1156,11 @@
/* write a wtmpx entry direct to the end of the file */
/* This is a sli...
2016 Jan 19
2
OpenSSH portability & buildsystem fixes
...me.c is unused and causes a
warning. It's used below by code that's commented out and the variable
should be commented out too.
* utimes in openbsd-compat has char * for the path parameter but that's
supposed to be const char *.
* loginrec.c in utmpx_perform_login does a call to utmpx_write_direct
with a parameter named ut, but such a variable does not exist, that
was probably supposed to be utx. Though that code isn't implemented
so not that important.
* DESTDIR is not inherited from the environment in the makefiles, but
instead assigned to the empty string. autoconf packages...
2002 Jul 18
2
[Bug 345] w (uptime) command still indicates user is logged in after logout
http://bugzilla.mindrot.org/show_bug.cgi?id=345
stevesk at pobox.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |Lutz.Jaenicke at aet.TU-
| |Cottbus.DE
------- Additional Comments From stevesk at