From: Dmitry V. Levin Date: Mon, 7 Dec 2015 00:10:58 +0000 (+0000) Subject: Print the first argument of umount2 syscall as a path X-Git-Tag: v4.11~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=431d7fd21a9276287f5788bebd35dbac6530ca46;p=strace Print the first argument of umount2 syscall as a path * umount.c (SYS_FUNC(umount2)): Use printpath instead of printstr. This fixes Debian bug #785050. --- diff --git a/umount.c b/umount.c index 8755afc9..4f599ea1 100644 --- a/umount.c +++ b/umount.c @@ -8,7 +8,7 @@ SYS_FUNC(umount2) { - printstr(tcp, tcp->u_arg[0], -1); + printpath(tcp, tcp->u_arg[0]); tprints(", "); printflags(umount_flags, tcp->u_arg[1], "MNT_???");