syslog.c: make use of RVAL_DECODED

* syslog.c (sys_syslog): Update for RVAL_DECODED.
This commit is contained in:
Дмитрий Левин 2015-07-16 22:03:03 +00:00
parent aa06f46d01
commit 279df2cc75

View File

@ -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 */