Skip to content

Commit

Permalink
framework: Drop unwanted debug message in sedispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
bachradsusi committed Apr 14, 2016
1 parent a1d3031 commit 4271b72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions framework/src/sedispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4271b72

Please sign in to comment.