Commit eb5968f8 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

startup: activate restricted mode earlier, so --help will reflect it

Kind-of-discovered-by: default avatarMarkus Bergholz <markuman@gmail.com>
parent f2c72bf7
Showing with 4 additions and 5 deletions
+4 -5
......@@ -2081,6 +2081,10 @@ int main(int argc, char **argv)
SET(NO_WRAP);
#endif
/* If the executable's name starts with 'r', activate restricted mode. */
if (*(tail(argv[0])) == 'r')
SET(RESTRICTED);
while ((optchr =
#ifdef HAVE_GETOPT_LONG
getopt_long(argc, argv,
......@@ -2298,11 +2302,6 @@ int main(int argc, char **argv)
}
}
/* If the executable filename starts with 'r', enable restricted
* mode. */
if (*(tail(argv[0])) == 'r')
SET(RESTRICTED);
/* If we're using restricted mode, disable suspending, backups,
* rcfiles, and history files, since they all would allow reading
* from or writing to files not specified on the command line. */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment