From 7144720ef824ef387e87d01ce79a06ad64267ac1 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Wed, 13 Aug 2003 21:05:48 +0000 Subject: [PATCH] Fix bug in last commit --- src/odoors/ODKrnl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/odoors/ODKrnl.c b/src/odoors/ODKrnl.c index ff1672a04e..94145fae90 100644 --- a/src/odoors/ODKrnl.c +++ b/src/odoors/ODKrnl.c @@ -114,6 +114,7 @@ static void ODKrnlChatMode(void); #ifdef ODPLAT_NIX static void sig_run_kernel(int sig); static void sig_get_char(int sig); +static void sig_no_carrier(int sig); #endif /* Functions specific to the multithreaded implementation of the kernel. */ @@ -218,7 +219,7 @@ tODResult ODKrnlInitialize(void) /* Make sure SIGHUP, SIGALRM, and SIGIO are unblocked */ sigemptyset(&block); sigaddset(&block,SIGHUP); - sigaddset(&block,SIGALRN); + sigaddset(&block,SIGALRM); sigaddset(&block,SIGIO); sigprocmask(SIG_UNBLOCK,&block,NULL); #endif -- GitLab