use STREQ, not strcmp: part 1
[libguestfs.git] / examples / hello.c
index a8649f3..8b36ed4 100644 (file)
@@ -4,7 +4,9 @@
  *   hello guest.img /dev/VolGroup00/LogVol00
  */
 
-#include <config.h>
+#if HAVE_CONFIG_H
+# include <config.h>
+#endif
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
@@ -25,7 +27,6 @@ main (int argc, char *argv[])
   if (guestfs_add_drive (g, argv[1]) == -1) exit (1);
 
   if (guestfs_launch (g) == -1) exit (1);
-  if (guestfs_wait_ready (g) == -1) exit (1);
 
   if (guestfs_mount (g, argv[2], "/") == -1) exit (1);