f6e56901ad
- Drop unwanted debug message in sedispatch (#1326985)
31 lines
989 B
Diff
31 lines
989 B
Diff
From 4271b72e879ca25ba244036c0c2b6b9dbf7b2edf Mon Sep 17 00:00:00 2001
|
|
From: Petr Lautrbach <plautrba@redhat.com>
|
|
Date: Thu, 14 Apr 2016 10:36:14 +0200
|
|
Subject: [PATCH 2/2] framework: Drop unwanted debug message in sedispatch
|
|
|
|
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1326985
|
|
---
|
|
framework/src/sedispatch.c | 5 ++---
|
|
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/framework/src/sedispatch.c b/framework/src/sedispatch.c
|
|
index 6417a10..bec3aa9 100644
|
|
--- a/framework/src/sedispatch.c
|
|
+++ b/framework/src/sedispatch.c
|
|
@@ -147,10 +147,9 @@ int main(int argc __attribute__((unused)), char *argv[] __attribute__((unused)))
|
|
FD_SET(0, &rfds);
|
|
tv.tv_sec = 3;
|
|
tv.tv_usec = 0;
|
|
- if (select(1, &rfds, NULL, NULL, &tv) == 0) {
|
|
- syslog(LOG_ERR, "timeout flush");
|
|
+ if (select(1, &rfds, NULL, NULL, &tv) == 0)
|
|
+ /* The timeout occurred, the event is probably complete */
|
|
auparse_flush_feed(au);
|
|
- }
|
|
}
|
|
if (feof(stdin))
|
|
break;
|
|
--
|
|
2.7.3
|
|
|