From 9628eeaf6569706b49a971aa42be0e19e5b8dd52 Mon Sep 17 00:00:00 2001 From: netblue30 Date: Thu, 12 Nov 2015 09:16:45 -0500 Subject: fixes --- src/firejail/fs_whitelist.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src') diff --git a/src/firejail/fs_whitelist.c b/src/firejail/fs_whitelist.c index fd9115a5e..073e247dc 100644 --- a/src/firejail/fs_whitelist.c +++ b/src/firejail/fs_whitelist.c @@ -64,7 +64,6 @@ static void whitelist_path(ProfileEntry *entry) { char *wfile; if (entry->home_dir) { -printf("here %d\n", __LINE__); fname = path + strlen(cfg.homedir); if (*fname == '\0') { fprintf(stderr, "Error: file %s is not in user home directory, exiting...\n", path); @@ -75,7 +74,6 @@ printf("here %d\n", __LINE__); errExit("asprintf"); } else if (entry->tmp_dir) { -printf("here %d\n", __LINE__); fname = path + 4; // strlen("/tmp") if (*fname == '\0') { fprintf(stderr, "Error: file %s is not in /tmp directory, exiting...\n", path); @@ -87,9 +85,6 @@ printf("here %d\n", __LINE__); } // check if the file exists -printf("here %d %s\n", __LINE__, wfile); -system("ls -l /run/firejail/mnt/orig-tmp"); - struct stat s; if (stat(wfile, &s) == 0) { if (arg_debug) -- cgit v1.2.3-54-g00ecf