aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-04-08 20:02:53 -0700
committerGuy Harris <guy@alum.mit.edu>2017-04-09 03:03:25 +0000
commit62b342443ddf2e5089c9cbaf137dc6a81b0b4678 (patch)
tree1b56e22c014c8293165f0a9f2061f70e2ba39e4d /tshark.c
parentf0a24bee898d71c7c005d68b97d47b16f7778f1c (diff)
Pull the error-reporting code for preference files into read_prefs().
No need to duplicate it in N different programs. Update comments while we're at it. Change-Id: I3096cbe5448a19363eff6303bdd54e522dae9336 Reviewed-on: https://code.wireshark.org/review/20973 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c31
1 files changed, 2 insertions, 29 deletions
diff --git a/tshark.c b/tshark.c
index 348b68f0ad..b3149cb6a3 100644
--- a/tshark.c
+++ b/tshark.c
@@ -665,10 +665,7 @@ main(int argc, char *argv[])
WSADATA wsaData;
#endif /* _WIN32 */
- char *gpf_path, *pf_path;
char *cf_path;
- int gpf_open_errno, gpf_read_errno;
- int pf_open_errno, pf_read_errno;
int cf_open_errno;
int err;
volatile int exit_status = EXIT_SUCCESS;
@@ -958,8 +955,7 @@ main(int argc, char *argv[])
if (strcmp(argv[2], "column-formats") == 0)
column_dump_column_formats();
else if (strcmp(argv[2], "currentprefs") == 0) {
- read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
- &pf_open_errno, &pf_read_errno, &pf_path);
+ read_prefs();
write_prefs(NULL);
}
else if (strcmp(argv[2], "decodes") == 0)
@@ -1011,30 +1007,7 @@ main(int argc, char *argv[])
tshark_debug("tshark reading preferences");
- prefs_p = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
- &pf_open_errno, &pf_read_errno, &pf_path);
- if (gpf_path != NULL) {
- if (gpf_open_errno != 0) {
- cmdarg_err("Can't open global preferences file \"%s\": %s.",
- pf_path, g_strerror(gpf_open_errno));
- }
- if (gpf_read_errno != 0) {
- cmdarg_err("I/O error reading global preferences file \"%s\": %s.",
- pf_path, g_strerror(gpf_read_errno));
- }
- }
- if (pf_path != NULL) {
- if (pf_open_errno != 0) {
- cmdarg_err("Can't open your preferences file \"%s\": %s.", pf_path,
- g_strerror(pf_open_errno));
- }
- if (pf_read_errno != 0) {
- cmdarg_err("I/O error reading your preferences file \"%s\": %s.",
- pf_path, g_strerror(pf_read_errno));
- }
- g_free(pf_path);
- pf_path = NULL;
- }
+ prefs_p = read_prefs();
read_filter_list(CFILTER_LIST, &cf_path, &cf_open_errno);
if (cf_path != NULL) {