* renameat.c (sys_renameat, sys_renameat2): Update for RVAL_DECODED.
SYS_FUNC(renameat)
{
- if (entering(tcp)) {
- decode_renameat(tcp);
- }
- return 0;
+ decode_renameat(tcp);
+
+ return RVAL_DECODED;
}
#include <linux/fs.h>
SYS_FUNC(renameat2)
{
- if (entering(tcp)) {
- decode_renameat(tcp);
- tprints(", ");
- printflags(rename_flags, tcp->u_arg[4], "RENAME_??");
- }
- return 0;
+ decode_renameat(tcp);
+ tprints(", ");
+ printflags(rename_flags, tcp->u_arg[4], "RENAME_??");
+
+ return RVAL_DECODED;
}