summaryrefslogtreecommitdiffstats
path: root/capitests
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-06-10 15:31:29 +0100
committerRichard Jones <rjones@redhat.com>2009-06-10 15:42:49 +0100
commitccc1d216032ff61a81eb1116df44d5bd82079462 (patch)
tree1a2edeb807367eee0d0850a94c706d55819020fc /capitests
parentd96554c58fd48db02156044fc15b181e453f0315 (diff)
downloadlibguestfs-ccc1d216032ff61a81eb1116df44d5bd82079462.tar.gz
libguestfs-ccc1d216032ff61a81eb1116df44d5bd82079462.tar.xz
libguestfs-ccc1d216032ff61a81eb1116df44d5bd82079462.zip
Remove obsolete comment from generator.
Diffstat (limited to 'capitests')
-rw-r--r--capitests/tests.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/capitests/tests.c b/capitests/tests.c
index 016b78d3..536da7f2 100644
--- a/capitests/tests.c
+++ b/capitests/tests.c
@@ -5794,11 +5794,13 @@ static int test_checksum_8 (void)
/* TestOutput for checksum (8) */
char expected[] = "46d6ca27ee07cdc6fa99c2e138cc522c";
{
+ char options[] = "ro";
+ char vfstype[] = "squashfs";
char device[] = "/dev/sdd";
char mountpoint[] = "/";
int r;
suppress_error = 0;
- r = guestfs_mount (g, device, mountpoint);
+ r = guestfs_mount_vfs (g, options, vfstype, device, mountpoint);
if (r == -1)
return -1;
}