mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
login: port tables over to use TABLE_UID/TABLE_PID
This commit is contained in:
parent
b26c0b68a4
commit
805f2df11f
@ -114,9 +114,9 @@ static int print_inhibitors(sd_bus *bus) {
|
||||
|
||||
r = table_add_many(table,
|
||||
TABLE_STRING, who,
|
||||
TABLE_UINT32, uid,
|
||||
TABLE_UID, (uid_t) uid,
|
||||
TABLE_STRING, strna(u),
|
||||
TABLE_UINT32, pid,
|
||||
TABLE_PID, (pid_t) pid,
|
||||
TABLE_STRING, strna(comm),
|
||||
TABLE_STRING, what,
|
||||
TABLE_STRING, why,
|
||||
|
@ -184,7 +184,7 @@ static int list_sessions(int argc, char *argv[], void *userdata) {
|
||||
|
||||
r = table_add_many(table,
|
||||
TABLE_STRING, id,
|
||||
TABLE_UINT32, uid,
|
||||
TABLE_UID, (uid_t) uid,
|
||||
TABLE_STRING, user,
|
||||
TABLE_STRING, seat,
|
||||
TABLE_STRING, strna(tty));
|
||||
@ -243,7 +243,7 @@ static int list_users(int argc, char *argv[], void *userdata) {
|
||||
break;
|
||||
|
||||
r = table_add_many(table,
|
||||
TABLE_UINT32, uid,
|
||||
TABLE_UID, (uid_t) uid,
|
||||
TABLE_STRING, user);
|
||||
if (r < 0)
|
||||
return log_error_errno(r, "Failed to add row to table: %m");
|
||||
|
Loading…
Reference in New Issue
Block a user