X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=fuse%2Fguestmount.c;h=1e3b5dbef55dee397ec870ad18ff898003bbbfd4;hp=f1f848056bd3ec11ddd00e9c5e623ad0830f2c1a;hb=48ebf50f3136ac27f4252662e351230ffa2b15e5;hpb=3824935411e8a046f0359578978447dd5a0a1a16 diff --git a/fuse/guestmount.c b/fuse/guestmount.c index f1f8480..1e3b5db 100644 --- a/fuse/guestmount.c +++ b/fuse/guestmount.c @@ -42,6 +42,7 @@ #include #include #include +#include #include #include @@ -947,6 +948,8 @@ main (int argc, char *argv[]) bindtextdomain (PACKAGE, LOCALEBASEDIR); textdomain (PACKAGE); + parse_config (); + enum { HELP_OPTION = CHAR_MAX + 1 }; /* The command line arguments are broadly compatible with (a subset @@ -1031,19 +1034,6 @@ main (int argc, char *argv[]) */ ADD_FUSE_ARG ("-s"); - /* If developing, add ./appliance to the path. Note that libtools - * interferes with this because uninstalled guestfish is a shell - * script that runs the real program with an absolute path. Detect - * that too. - * - * BUT if LIBGUESTFS_PATH environment variable is already set by - * the user, then don't override it. - */ - if (getenv ("LIBGUESTFS_PATH") == NULL && - argv[0] && - (argv[0][0] != '/' || strstr (argv[0], "/.libs/lt-") != NULL)) - guestfs_set_path (g, "appliance:" GUESTFS_DEFAULT_PATH); - for (;;) { c = getopt_long (argc, argv, options, long_options, &option_index); if (c == -1) break;