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 2b15a58 commit fe62e33Copy full SHA for fe62e33
renameat.c
@@ -12,21 +12,19 @@ decode_renameat(struct tcb *tcp)
12
13
SYS_FUNC(renameat)
14
{
15
- if (entering(tcp)) {
16
- decode_renameat(tcp);
17
- }
18
- return 0;
+ decode_renameat(tcp);
+
+ return RVAL_DECODED;
19
}
20
21
#include <linux/fs.h>
22
#include "xlat/rename_flags.h"
23
24
SYS_FUNC(renameat2)
25
26
27
28
- tprints(", ");
29
- printflags(rename_flags, tcp->u_arg[4], "RENAME_??");
30
31
+ tprints(", ");
+ printflags(rename_flags, tcp->u_arg[4], "RENAME_??");
32
0 commit comments