From 4a36e281c91f8de08426f60900e76e2b7e087d9c Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Sun, 29 Jun 2008 04:45:30 +0000 Subject: [PATCH] ffix --- man5/utmp.5 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/man5/utmp.5 b/man5/utmp.5 index b62e76d1c..2ae3fc913 100644 --- a/man5/utmp.5 +++ b/man5/utmp.5 @@ -69,21 +69,21 @@ around; details depend on the version of libc): #define UT_HOSTSIZE 256 struct exit_status { - short int e_termination; /* process termination status */ - short int e_exit; /* process exit status */ + short int e_termination; /* Process termination status */ + short int e_exit; /* Process exit status */ }; struct utmp { short ut_type; /* Type of record */ pid_t ut_pid; /* PID of login process */ - char ut_line[UT_LINESIZE]; /* device name of tty \- "/dev/" */ + char ut_line[UT_LINESIZE]; /* Device name of tty \- "/dev/" */ char ut_id[4]; /* Terminal name suffix, or inittab(5) ID */ - char ut_user[UT_NAMESIZE]; /* username */ + char ut_user[UT_NAMESIZE]; /* Username */ char ut_host[UT_HOSTSIZE]; /* Hostname for remote login, or kernel version for run-level messages */ - struct exit_status ut_exit; /* Exit status of a process + struct exit_status ut_exit; /* Exit status of a process marked as DEAD_PROCESS; not used by Linux init(8) */ /* The ut_session and ut_tv fields must be the same size when