examples: Add mount options "acl,user_xattr" to mount-local example.

This fixes commit 46b6766156.
This commit is contained in:
Richard W.M. Jones
2012-05-13 23:01:15 +01:00
parent 46b6766156
commit 034733e981

View File

@@ -83,7 +83,7 @@ main (int argc, char *argv[])
exit (EXIT_FAILURE);
/* Mount the empty filesystem. */
if (guestfs_mount (g, "/dev/sda1", "/") == -1)
if (guestfs_mount_options (g, "acl,user_xattr", "/dev/sda1", "/") == -1)
exit (EXIT_FAILURE);
/* Create a temporary mount directory. */