Change pwd to / for all init scripts, #181224.

This commit is contained in:
Roy Marples 2007-06-26 09:20:42 +00:00
parent 0575c15993
commit f9220d3e28

View File

@ -668,6 +668,9 @@ int main (int argc, char **argv)
atexit (cleanup);
newlevel = argv[0];
/* Change dir to / to ensure all scripts don't use stuff in pwd */
chdir ("/");
/* Setup a signal handler */
signal (SIGINT, handle_signal);
signal (SIGQUIT, handle_signal);