2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-09-02 07:15:27 +00:00

Modify the is_script function for match_command.c

This commit is contained in:
binlingyu
2023-06-25 11:15:17 +08:00
parent 7fb98a9a33
commit f8a45e8a54

View File

@@ -163,7 +163,7 @@ is_script(int fd)
if (magic[0] == '#' && magic[1] == '!') if (magic[0] == '#' && magic[1] == '!')
ret = true; ret = true;
} }
debug_return_int(ret); debug_return_bool(ret);
} }
/* /*