commit | 431d7fd21a9276287f5788bebd35dbac6530ca46 | [log] [tgz] |
---|---|---|
author | Dmitry V. Levin <ldv@altlinux.org> | Mon Dec 07 00:10:58 2015 +0000 |
committer | Dmitry V. Levin <ldv@altlinux.org> | Mon Dec 07 00:10:58 2015 +0000 |
tree | 618cc05134cc59c191634a3f79a6396bd55d1080 | |
parent | eb76c4be150102e5ddf2f2cf90673d8d7cda9afd [diff] [blame] |
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 8755afc..4f599ea 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_???");