Skip to content

Commit

Permalink
fix utmp error message
Browse files Browse the repository at this point in the history
  • Loading branch information
smitsohu committed May 16, 2021
1 parent 825ac9c commit ef4b0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/firejail/fs_var.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ void fs_var_utmp(void) {
if (stat(UTMP_FILE, &s) == 0)
utmp_group = s.st_gid;
else {
fwarning("cannot find /var/run/utmp\n");
fwarning("cannot find %s\n", UTMP_FILE);
return;
}

Expand Down

0 comments on commit ef4b0de

Please sign in to comment.