From: Dmitry V. Levin Date: Mon, 20 Jul 2015 13:50:55 +0000 (+0000) Subject: fchownat.c: make use of RVAL_DECODED X-Git-Tag: v4.11~369 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f891bb4373d83aed888e821c80500b376cabda0f;p=strace fchownat.c: make use of RVAL_DECODED * fchownat.c (sys_fchownat): Update for RVAL_DECODED. --- diff --git a/fchownat.c b/fchownat.c index 743b5747..6aed51d0 100644 --- a/fchownat.c +++ b/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; }