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 8aa2a81 commit 0b2eabeCopy full SHA for 0b2eabe
access.c
@@ -7,12 +7,11 @@
7
static int
8
decode_access(struct tcb *tcp, int offset)
9
{
10
- if (entering(tcp)) {
11
- printpath(tcp, tcp->u_arg[offset]);
12
- tprints(", ");
13
- printflags(access_flags, tcp->u_arg[offset + 1], "?_OK");
14
- }
15
- return 0;
+ printpath(tcp, tcp->u_arg[offset]);
+ tprints(", ");
+ printflags(access_flags, tcp->u_arg[offset + 1], "?_OK");
+
+ return RVAL_DECODED;
16
}
17
18
SYS_FUNC(access)
@@ -22,7 +21,6 @@ SYS_FUNC(access)
22
21
23
SYS_FUNC(faccessat)
24
25
- if (entering(tcp))
26
- print_dirfd(tcp, tcp->u_arg[0]);
+ print_dirfd(tcp, tcp->u_arg[0]);
27
return decode_access(tcp, 1);
28
0 commit comments