search for: etc_filename

Displaying 2 results from an estimated 2 matches for "etc_filename".

Did you mean: eps_filename
2014 Feb 17
2
[PATCH 1/2] fish: small refactor of config reading code
...our change. --- fish/config.c | 88 +++++++++++++++++++++-------------------------------------- 1 file changed, 31 insertions(+), 57 deletions(-) diff --git a/fish/config.c b/fish/config.c index e9f437a..02d850b 100644 --- a/fish/config.c +++ b/fish/config.c @@ -42,87 +42,61 @@ static const char *etc_filename = "/etc/libguestfs-tools.conf"; * global handle 'g' is opened. */ -void -parse_config (void) +static void +read_config_from_file (const char *filename) { - const char *home; FILE *fp; - config_t conf; - - config_init (&conf); - - /* Try $HOME first. */ - home =...
2016 Jul 22
1
[PATCH] static const char *str -> static const char str
...c b/fish/config.c index 0c3471a..8f10ad4 100644 --- a/fish/config.c +++ b/fish/config.c @@ -45,8 +45,8 @@ #ifdef HAVE_LIBCONFIG #define GLOBAL_CONFIG_FILENAME "libguestfs-tools.conf" -static const char *home_filename = /* $HOME/ */ ".libguestfs-tools.rc"; -static const char *etc_filename = "/etc/" GLOBAL_CONFIG_FILENAME; +static const char home_filename[] = /* $HOME/ */ ".libguestfs-tools.rc"; +static const char etc_filename[] = "/etc/" GLOBAL_CONFIG_FILENAME; static void read_config_from_file (const char *filename) diff --git a/fish/fish.c b/fish/...