From c1f37f6e7ad44ce90bed1b86b22543c47847c7b3 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Thu, 16 Jul 2015 21:13:27 +0000 Subject: [PATCH] umount.c: make use of RVAL_DECODED * umount.c (sys_umount2): Update for RVAL_DECODED. --- umount.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/umount.c b/umount.c index b015f838..8755afc9 100644 --- a/umount.c +++ b/umount.c @@ -8,10 +8,9 @@ SYS_FUNC(umount2) { - if (entering(tcp)) { - printstr(tcp, tcp->u_arg[0], -1); - tprints(", "); - printflags(umount_flags, tcp->u_arg[1], "MNT_???"); - } - return 0; + printstr(tcp, tcp->u_arg[0], -1); + tprints(", "); + printflags(umount_flags, tcp->u_arg[1], "MNT_???"); + + return RVAL_DECODED; } -- 2.50.1