fchownat.c: make use of RVAL_DECODED
* fchownat.c (sys_fchownat): Update for RVAL_DECODED.
This commit is contained in:
parent
b6d80ffe02
commit
f891bb4373
17
fchownat.c
17
fchownat.c
@ -2,13 +2,12 @@
|
||||
|
||||
SYS_FUNC(fchownat)
|
||||
{
|
||||
if (entering(tcp)) {
|
||||
print_dirfd(tcp, tcp->u_arg[0]);
|
||||
printpath(tcp, tcp->u_arg[1]);
|
||||
printuid(", ", tcp->u_arg[2]);
|
||||
printuid(", ", tcp->u_arg[3]);
|
||||
tprints(", ");
|
||||
printflags(at_flags, tcp->u_arg[4], "AT_???");
|
||||
}
|
||||
return 0;
|
||||
print_dirfd(tcp, tcp->u_arg[0]);
|
||||
printpath(tcp, tcp->u_arg[1]);
|
||||
printuid(", ", tcp->u_arg[2]);
|
||||
printuid(", ", tcp->u_arg[3]);
|
||||
tprints(", ");
|
||||
printflags(at_flags, tcp->u_arg[4], "AT_???");
|
||||
|
||||
return RVAL_DECODED;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user