utmpx.h: add ut_host for compatibility (not posix)

Change-Id: I27e8f7b6dbc29232542e3749d8e194efa2ef5209
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3799
Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
Jérôme Duval
2021-03-16 16:55:44 +00:00
committed by Adrien Destugues
parent a29f0661ce
commit 3592432e9b
+2 -1
View File
@@ -17,7 +17,8 @@ struct utmpx {
pid_t ut_pid; /* process ID */
char ut_user[32]; /* user login name */
char ut_line[16]; /* device name */
char __ut_reserved[192];
char ut_host[128]; /* remote hostname */
char __ut_reserved[64];
};