summaryrefslogtreecommitdiffstats
path: root/threads.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-09-18 12:44:00 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-09-18 12:44:00 +0200
commit7b63cd6feda5087c43652bdcf8e694b544295d5b (patch)
treea51dd63c9b182a05848e35023f43d8807344113f /threads.c
parentebc931db47bf1e28502a043dc2984acf5fd532b6 (diff)
downloadrsyslog-7b63cd6feda5087c43652bdcf8e694b544295d5b.tar.gz
rsyslog-7b63cd6feda5087c43652bdcf8e694b544295d5b.tar.xz
rsyslog-7b63cd6feda5087c43652bdcf8e694b544295d5b.zip
minor things, mostly improved debug info
Diffstat (limited to 'threads.c')
-rw-r--r--threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threads.c b/threads.c
index 61ea8f29..13222694 100644
--- a/threads.c
+++ b/threads.c
@@ -127,7 +127,7 @@ static void* thrdStarter(void *arg)
assert(pThis != NULL);
assert(pThis->pUsrThrdMain != NULL);
- /* block all signalsi */
+ /* block all signals */
sigset_t sigSet;
sigfillset(&sigSet);
pthread_sigmask(SIG_BLOCK, &sigSet, NULL);