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 0c6d0f5 commit 71aaf24Copy full SHA for 71aaf24
ChangeLog
@@ -4,6 +4,7 @@
4
- Make a reload legacy service for auditd
5
- In auparse python bindings, expose some new types that were missing
6
- In normalizer, pickup subject kind for user_login events
7
+- Fix interpretation of unknown ioctcmds (#1540507)
8
9
2.8.2
10
- Update tables for 4.14 kernel
auparse/interpret.c
@@ -2112,7 +2112,7 @@ static const char *print_ioctl_req(const char *val)
2112
r = ioctlreq_i2s(req);
2113
if (r != NULL)
2114
return strdup(r);
2115
- if (asprintf(&out, "0x%s", val) < 0)
+ if (asprintf(&out, "0x%x", req) < 0)
2116
out = NULL;
2117
return out;
2118
}
0 commit comments