From: Dmitry V. Levin Date: Thu, 16 Jul 2015 22:03:03 +0000 (+0000) Subject: syslog.c: make use of RVAL_DECODED X-Git-Tag: v4.11~435 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=279df2cc7565afe0e2d76a0e896df2627aaa9e4a;p=strace syslog.c: make use of RVAL_DECODED * syslog.c (sys_syslog): Update for RVAL_DECODED. --- diff --git a/syslog.c b/syslog.c index 6dac3d9c..e2700605 100644 --- a/syslog.c +++ b/syslog.c @@ -34,11 +34,9 @@ SYS_FUNC(syslog) return 0; break; default: - if (entering(tcp)) { - printaddr(tcp->u_arg[1]); - tprintf(", %lu", tcp->u_arg[2]); - } - return 0; + printaddr(tcp->u_arg[1]); + tprintf(", %lu", tcp->u_arg[2]); + return RVAL_DECODED; } /* bufp */