From: Dmitry V. Levin Date: Fri, 17 Jul 2015 22:03:29 +0000 (+0000) Subject: Update openat parser for the RVAL_DECODED change X-Git-Tag: v4.11~346 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57ae04e40240f94064832394c8d3ecc51ea9955d;p=strace Update openat parser for the RVAL_DECODED change * open.c (sys_openat): Update for RVAL_DECODED. --- diff --git a/open.c b/open.c index 828cd6a2..974f50cd 100644 --- a/open.c +++ b/open.c @@ -103,8 +103,7 @@ SYS_FUNC(open) SYS_FUNC(openat) { - if (entering(tcp)) - print_dirfd(tcp, tcp->u_arg[0]); + print_dirfd(tcp, tcp->u_arg[0]); return decode_open(tcp, 1); }