From d77f558c5915db836c8385e781810f8ad445af05 Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Thu, 9 Jun 2005 06:58:03 +0000 Subject: [PATCH] Try to read the "cfilters"/"dfilters" config files from the global path (program dir), if no personal versions of these files are available. This is the same behaviour, as we do it for the colorfilters/preferences/... files already. svn path=/trunk/; revision=14594 --- filters.c | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/filters.c b/filters.c index cd8d33f080..66174442e6 100644 --- a/filters.c +++ b/filters.c @@ -111,11 +111,11 @@ read_filter_list(filter_list_type_t list, char **pref_path_return, return; } - /* To do: generalize this */ + /* try to open personal "cfilters"/"dfilters" file */ ff_path = get_persconffile_path(ff_name, FALSE); if ((ff = fopen(ff_path, "r")) == NULL) { /* - * Did that fail because we the file didn't exist? + * Did that fail because the file didn't exist? */ if (errno != ENOENT) { /* @@ -127,7 +127,7 @@ read_filter_list(filter_list_type_t list, char **pref_path_return, } /* - * Yes. See if there's a "filters" file; if so, read it. + * Yes. See if there's an "old style" personal "filters" file; if so, read it. * This means that a user will start out with their capture and * display filter lists being identical; each list may contain * filters that don't belong in that list. The user can edit @@ -137,6 +137,23 @@ read_filter_list(filter_list_type_t list, char **pref_path_return, g_free(ff_path); ff_path = get_persconffile_path(FILTER_FILE_NAME, FALSE); if ((ff = fopen(ff_path, "r")) == NULL) { + /* + * Did that fail because the file didn't exist? + */ + if (errno != ENOENT) { + /* + * No. Just give up. + */ + *pref_path_return = ff_path; + *errno_return = errno; + return; + } + + /* + * Try to open the global "cfilters/dfilters" file */ + ff_path = get_datafile_path(ff_name); + if ((ff = fopen(ff_path, "r")) == NULL) { + /* * Well, that didn't work, either. Just give up. * Return an error if the file existed but we couldn't open it. @@ -144,8 +161,9 @@ read_filter_list(filter_list_type_t list, char **pref_path_return, if (errno != ENOENT) { *pref_path_return = ff_path; *errno_return = errno; - } - return; + } + return; + } } }