From 034733e981024f0686dc00a3eb286ac12f256d96 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sun, 13 May 2012 23:01:15 +0100 Subject: examples: Add mount options "acl,user_xattr" to mount-local example. This fixes commit 46b6766156ace142443b36e20e55074c544ae6cc. --- examples/mount_local.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mount_local.c b/examples/mount_local.c index 526e426f..3e18fd90 100644 --- a/examples/mount_local.c +++ b/examples/mount_local.c @@ -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. */ -- cgit