summaryrefslogtreecommitdiff
path: root/ui/recent.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-10-27 17:15:39 +0000
committerGerald Combs <gerald@wireshark.org>2013-10-27 17:15:39 +0000
commit69741d086b020a1578e25e386237f2a5a5e43124 (patch)
tree250606417b519016d982e5361e56bf75b012817d /ui/recent.c
parent858524047c57ae6e4dd053e47326489ee6eae542 (diff)
downloadwireshark-69741d086b020a1578e25e386237f2a5a5e43124.tar.gz
Remove U3 code and packaging.
svn path=/trunk/; revision=52896
Diffstat (limited to 'ui/recent.c')
-rw-r--r--ui/recent.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/ui/recent.c b/ui/recent.c
index 41f5f93263..480b99e275 100644
--- a/ui/recent.c
+++ b/ui/recent.c
@@ -44,7 +44,6 @@
#include "ui/simple_dialog.h"
#include "ui/ui_util.h"
-#include <wsutil/u3.h>
#include <wsutil/file_util.h>
#include <wsutil/str_util.h>
@@ -664,11 +663,7 @@ write_profile_recent(void)
if (get_last_open_dir() != NULL) {
fprintf(rf, "\n# Last directory navigated to in File Open dialog.\n");
-
- if(u3_active())
- fprintf(rf, RECENT_GUI_FILEOPEN_REMEMBERED_DIR ": %s\n", u3_contract_device_path(get_last_open_dir()));
- else
- fprintf(rf, RECENT_GUI_FILEOPEN_REMEMBERED_DIR ": %s\n", get_last_open_dir());
+ fprintf(rf, RECENT_GUI_FILEOPEN_REMEMBERED_DIR ": %s\n", get_last_open_dir());
}
fclose(rf);
@@ -990,10 +985,7 @@ read_set_recent_pair_dynamic(gchar *key, const gchar *value,
return PREFS_SET_SYNTAX_ERR;
}
if (strcmp(key, RECENT_KEY_CAPTURE_FILE) == 0) {
- if (u3_active())
- add_menu_recent_capture_file(u3_expand_device_path(value));
- else
- add_menu_recent_capture_file(value);
+ add_menu_recent_capture_file(value);
} else if (strcmp(key, RECENT_KEY_DISPLAY_FILTER) == 0) {
dfilter_combo_add_recent(value);
} else if (strcmp(key, RECENT_KEY_CAPTURE_FILTER) == 0) {