From: Dmitry V. Levin Date: Mon, 16 May 2016 22:49:54 +0000 (+0000) Subject: Fix printing of invalid flags argument of unshare syscall X-Git-Tag: v4.12~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d06fa28b0e0987f4771ea5c40803cf3f455bcfcd;p=strace Fix printing of invalid flags argument of unshare syscall * clone.c (SYS_FUNC(unshare)): Print 1st argument using printflags_long. --- diff --git a/clone.c b/clone.c index cf271daf..2fad0b8d 100644 --- a/clone.c +++ b/clone.c @@ -142,7 +142,7 @@ SYS_FUNC(setns) SYS_FUNC(unshare) { - printflags(clone_flags, tcp->u_arg[0], "CLONE_???"); + printflags_long(clone_flags, tcp->u_arg[0], "CLONE_???"); return RVAL_DECODED; }