search for: config_error_text

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

2014 Feb 17
2
[PATCH 1/2] fish: small refactor of config reading code
...program_name, path); - */ - - if (config_read (&conf, fp) == CONFIG_FALSE) { - fprintf (stderr, - _("%s: %s: line %d: error parsing configuration file: %s\n"), - program_name, path, config_error_line (&conf), - config_error_text (&conf)); - exit (EXIT_FAILURE); - } - - if (fclose (fp) == -1) { - perror (path); - exit (EXIT_FAILURE); - } - - /* Notes: - * - * (1) It's not obvious from the documentation, that config_read - * completely resets the 'conf...
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. Rich.