From 279df2cc7565afe0e2d76a0e896df2627aaa9e4a Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Thu, 16 Jul 2015 22:03:03 +0000 Subject: [PATCH] syslog.c: make use of RVAL_DECODED * syslog.c (sys_syslog): Update for RVAL_DECODED. --- syslog.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 */ -- 2.40.0