X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=examples%2Fhello.c;h=b3d36e6365be861499f4651690229e78ffa0d6fe;hb=1d5ec10659d67020c5b709e4df4c49bc0d59d58c;hp=8b36ed44f41b64842e02876c8389e95eb5f605c2;hpb=8869adf1e811d894088dbb0f371edc23299005c8;p=libguestfs.git diff --git a/examples/hello.c b/examples/hello.c index 8b36ed4..b3d36e6 100644 --- a/examples/hello.c +++ b/examples/hello.c @@ -19,18 +19,21 @@ main (int argc, char *argv[]) if (argc != 3 || access (argv[1], F_OK) != 0) { fprintf (stderr, "Usage: hello disk-image partition\n"); - exit (1); + exit (EXIT_FAILURE); } - if (!(g = guestfs_create ())) exit (1); + if (!(g = guestfs_create ())) exit (EXIT_FAILURE); - if (guestfs_add_drive (g, argv[1]) == -1) exit (1); + if (guestfs_add_drive_opts (g, argv[1], + GUESTFS_ADD_DRIVE_OPTS_FORMAT, "raw", + -1) == -1) + exit (EXIT_FAILURE); - if (guestfs_launch (g) == -1) exit (1); + if (guestfs_launch (g) == -1) exit (EXIT_FAILURE); - if (guestfs_mount (g, argv[2], "/") == -1) exit (1); + if (guestfs_mount_options (g, "", argv[2], "/") == -1) exit (EXIT_FAILURE); - if (guestfs_touch (g, "/hello") == -1) exit (1); + if (guestfs_touch (g, "/hello") == -1) exit (EXIT_FAILURE); guestfs_sync (g); guestfs_close (g);