From: Dmitry V. Levin Date: Mon, 16 May 2016 23:04:54 +0000 (+0000) Subject: Fix printing of invalid flags argument of mount syscall X-Git-Tag: v4.12~135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=412ec9480cfcdb3aa76f9dc32a59d87b5fa7338f;p=strace Fix printing of invalid flags argument of mount syscall * mount.c (SYS_FUNC(mount)): Print 1st argument using printflags_long. --- diff --git a/mount.c b/mount.c index 84e79d66..1ae445dc 100644 --- a/mount.c +++ b/mount.c @@ -74,7 +74,7 @@ SYS_FUNC(mount) tprints("|"); } if (flags || !old_magic) - printflags(mount_flags, flags, "MS_???"); + printflags_long(mount_flags, flags, "MS_???"); tprints(", "); if (ignore_data)