From c2ced4a2aba6bdde3fdad77407cd528e8a11a446 Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Tue, 9 Apr 2013 02:48:03 +0000 Subject: Don't try to open /.wireshark on Windows: Wireshark hasn't written to that directory since 2001 and reading from that directory was only left in for backwards compatibility with versions prior to r4702. I think it's now safe to remove that backwards compatibility. This eliminates the last argument of get_persconffile_path(). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8437 svn path=/trunk/; revision=48797 --- ui/gtk/about_dlg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/gtk/about_dlg.c') diff --git a/ui/gtk/about_dlg.c b/ui/gtk/about_dlg.c index 71aa50f116..3a0dbdfdc3 100644 --- a/ui/gtk/about_dlg.c +++ b/ui/gtk/about_dlg.c @@ -420,7 +420,7 @@ about_folders_page_new(void) g_free(path); /* pers conf */ - path = get_persconffile_path("", FALSE, FALSE); + path = get_persconffile_path("", FALSE); about_folders_row(table, "Personal configuration", path, "\"dfilters\", \"preferences\", \"ethers\", ..."); g_free(path); -- cgit v1.2.1