]> granicus.if.org Git - strace/blobdiff - umount.c
CREDITS.in: use UTF-8 consistently
[strace] / umount.c
index 8755afc93c9a2fce187c904905ba65cc5e5700e5..8fafeabe22b88d91e110be3a95d0377846400ad2 100644 (file)
--- a/umount.c
+++ b/umount.c
@@ -1,14 +1,9 @@
 #include "defs.h"
-
-#define MNT_FORCE      0x00000001      /* Attempt to forcibily umount */
-#define MNT_DETACH     0x00000002      /* Just detach from the tree */
-#define MNT_EXPIRE     0x00000004      /* Mark for expiry */
-
 #include "xlat/umount_flags.h"
 
 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_???");