Skip to content

Commit

Permalink
fixup! Increase verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed Nov 24, 2024
1 parent 03499e1 commit b2bee4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,14 +452,14 @@ char* find_fusermount() {
}

if (sb.st_uid != 0 || (sb.st_mode & S_ISUID) == 0) {
if (VERBOSE) {
if (verbose) {
printf("Not setuid root, skipping...\n");
}
free(fusermount_full_path);
continue;
}

if (VERBOSE) {
if (verbose) {
printf("Found setuid root executable: %s\n", fusermount_full_path);
}

Expand Down

0 comments on commit b2bee4f

Please sign in to comment.