mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +00:00
Shell: Make a new session at start if there's no active session
This commit is contained in:
committed by
Andreas Kling
parent
21f513fe0f
commit
a43d9c4fe0
@@ -209,6 +209,13 @@ int main(int argc, char** argv)
|
||||
|
||||
parser.parse(argc, argv);
|
||||
|
||||
if (getsid(getpid()) == 0) {
|
||||
if (setsid() < 0) {
|
||||
perror("setsid");
|
||||
// Let's just hope that it's ok.
|
||||
}
|
||||
}
|
||||
|
||||
shell->current_script = argv[0];
|
||||
|
||||
if (!skip_rc_files) {
|
||||
|
||||
Reference in New Issue
Block a user