aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-12-20 08:45:38 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2015-12-20 08:45:38 -0500
commit8bf0a10a000f0f5584f98b35ea6ee54d2bdffd78 (patch)
tree8d007588d10b173d37f4d8757581a758ad12efee /src
parentremoved tracelog from chromium profile (diff)
parentMerge pull request #198 from Duncaen/musl (diff)
downloadfirejail-8bf0a10a000f0f5584f98b35ea6ee54d2bdffd78.tar.gz
firejail-8bf0a10a000f0f5584f98b35ea6ee54d2bdffd78.tar.zst
firejail-8bf0a10a000f0f5584f98b35ea6ee54d2bdffd78.zip
Merge branch 'master' of https://github.com/netblue30/firejail
Diffstat (limited to 'src')
-rw-r--r--src/firejail/fs_var.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/firejail/fs_var.c b/src/firejail/fs_var.c
index 372765cd4..377ce8ff3 100644
--- a/src/firejail/fs_var.c
+++ b/src/firejail/fs_var.c
@@ -320,7 +320,7 @@ void fs_var_utmp(void) {
320 320
321 // extract utmp group id 321 // extract utmp group id
322 gid_t utmp_group = 0; 322 gid_t utmp_group = 0;
323 if (stat("/var/run/utmp", &s) == 0) 323 if (stat(UTMP_FILE, &s) == 0)
324 utmp_group = s.st_gid; 324 utmp_group = s.st_gid;
325 else { 325 else {
326 fprintf(stderr, "Warning: cannot find /var/run/utmp\n"); 326 fprintf(stderr, "Warning: cannot find /var/run/utmp\n");
@@ -362,9 +362,7 @@ void fs_var_utmp(void) {
362 // mount the new utmp file 362 // mount the new utmp file
363 if (arg_debug) 363 if (arg_debug)
364 printf("Mount the new utmp file\n"); 364 printf("Mount the new utmp file\n");
365 if (mount(RUN_UTMP_FILE, "/var/run/utmp", NULL, MS_BIND|MS_REC, NULL) < 0) 365 if (mount(RUN_UTMP_FILE, UTMP_FILE, NULL, MS_BIND|MS_REC, NULL) < 0)
366 errExit("mount bind utmp"); 366 errExit("mount bind utmp");
367 fs_logger("create /var/run/utmp"); 367 fs_logger("create /var/run/utmp");
368} 368}
369
370