1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-15 07:56:36 +00:00
freebsd-ports/x11/rxvt-devel/files/utmpx_patch-src::logging.c
Martin Wilke c40a93cf47 - Fix build on head
PR:		143954
Submitted by:	bf <bf1783@gmail.com>
Approved by:	maintainer
2010-05-09 10:06:04 +00:00

51 lines
1.3 KiB
C

--- src/logging.c
+++ src/logging.c
@@ -82,7 +82,8 @@
else if (sscanf(pty, "pts/%d", &i) == 1)
sprintf(ut_id, "vt%02x", (i & 0xff)); /* sysv naming */
#endif
- else if (STRNCMP(pty, "pty", 3) && STRNCMP(pty, "tty", 3)) {
+ else if (STRNCMP(pty, "pty", 3) && STRNCMP(pty, "tty", 3) &&
+ STRNCMP(pty, "pts/", 4)) {
rxvt_print_error("can't parse tty name \"%s\"", pty);
return;
}
@@ -137,7 +138,9 @@
STRNCPY(utx->ut_user, (pwent && pwent->pw_name) ? pwent->pw_name : "?",
sizeof(utx->ut_user));
STRNCPY(utx->ut_id, ut_id, sizeof(utx->ut_id));
+#if 0
utx->ut_session = getsid(0);
+#endif
utx->ut_tv.tv_sec = time(NULL);
utx->ut_tv.tv_usec = 0;
utx->ut_pid = r->h->cmd_pid;
@@ -202,7 +205,7 @@
rxvt_update_wtmp(RXVT_WTMP_FILE, ut);
# endif
# endif
-# ifdef HAVE_STRUCT_UTMPX
+# if 0
updwtmpx(RXVT_WTMPX_FILE, utx);
# endif
}
@@ -254,7 +257,9 @@
if ((tmputx = getutxid(utx))) /* position to entry in utmp file */
utx = tmputx;
utx->ut_type = DEAD_PROCESS;
+#if 0
utx->ut_session = getsid(0);
+#endif
utx->ut_tv.tv_sec = time(NULL);
utx->ut_tv.tv_usec = 0;
#endif
@@ -274,7 +279,7 @@
rxvt_update_wtmp(RXVT_WTMP_FILE, ut);
# endif
# endif
-# ifdef HAVE_STRUCT_UTMPX
+# if 0
updwtmpx(RXVT_WTMPX_FILE, utx);
# endif
}