Print INIT_PROCESS and LOGIN_PROCESS entries as well.

Even though our implementation of utmpx never emits these types of
records, they are part of POSIX. Do print them when they show up in the
database files.

While there, also print the type number of unsupported records.
This commit is contained in:
ed 2011-10-27 16:20:29 +00:00
parent 247ca8dfcf
commit c59a6ed6df

View File

@ -600,13 +600,24 @@ utmpxprint(const struct utmpx *ut)
printf("\" pid=\"%d\" user=\"%s\" line=\"%s\" host=\"%s\"\n", printf("\" pid=\"%d\" user=\"%s\" line=\"%s\" host=\"%s\"\n",
ut->ut_pid, ut->ut_user, ut->ut_line, ut->ut_host); ut->ut_pid, ut->ut_user, ut->ut_line, ut->ut_host);
break; break;
case INIT_PROCESS:
printf("init process: id=\"");
UTMPXPRINTID;
printf("\" pid=\"%d\"\n", ut->ut_pid);
break;
case LOGIN_PROCESS:
printf("login process: id=\"");
UTMPXPRINTID;
printf("\" pid=\"%d\" user=\"%s\" line=\"%s\" host=\"%s\"\n",
ut->ut_pid, ut->ut_user, ut->ut_line, ut->ut_host);
break;
case DEAD_PROCESS: case DEAD_PROCESS:
printf("dead process: id=\""); printf("dead process: id=\"");
UTMPXPRINTID; UTMPXPRINTID;
printf("\" pid=\"%d\"\n", ut->ut_pid); printf("\" pid=\"%d\"\n", ut->ut_pid);
break; break;
default: default:
printf("unknown record type\n"); printf("unknown record type %hu\n", ut->ut_type);
break; break;
} }
} }