We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e717ee commit f0288eaCopy full SHA for f0288ea
audisp/plugins/af_unix/audisp-af_unix.c
@@ -416,7 +416,7 @@ void read_audit_record(int ifd)
416
return;
417
}
418
419
- if (!stop) {
+ if (client && !stop) {
420
if (format == F_STRING) {
421
char *str = NULL;
422
int str_len = 0;
@@ -458,9 +458,7 @@ void read_audit_record(int ifd)
458
len = auplugin_fgets(rx_buf,
459
MAX_AUDIT_EVENT_FRAME_SIZE + 1, ifd);
460
if (len > 0) {
461
- if (inbound_protocol == -1)
462
- inbound_protocol = F_STRING;
463
464
465
if (q_append(queue, rx_buf,
466
len) != 0)
0 commit comments