diff options
| author | Erik Troan <ewt@redhat.com> | 2000-02-23 21:04:50 +0000 |
|---|---|---|
| committer | Erik Troan <ewt@redhat.com> | 2000-02-23 21:04:50 +0000 |
| commit | 9118274a4e9df2a574cecc169e5fbca4dc98d2f9 (patch) | |
| tree | b5c9aa7b945a00eab9659d8e81089da31c630af0 /loader/init.c | |
| parent | 51f5a9e60eea5c47de006440b23e33a996fff3dd (diff) | |
various changes to get better ^C, ^Z handling
Diffstat (limited to 'loader/init.c')
| -rw-r--r-- | loader/init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/loader/init.c b/loader/init.c index 512e3b66b..20122569c 100644 --- a/loader/init.c +++ b/loader/init.c @@ -490,6 +490,9 @@ int main(int argc, char **argv) { } printf("done\n"); + signal(SIGINT, SIG_IGN); + signal(SIGTSTP, SIG_IGN); + for (i = 1; i < argc; i++) if (!strcmp (argv[i], "serial")) { isSerial = 1; |
