aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/airpcap_gui_utils.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2017-01-31 07:51:19 -0500
committerMichael Mann <mmann78@netscape.net>2017-01-31 17:08:47 +0000
commit51a30142251e377ec28eb8584c56386c2481d6c0 (patch)
tree4a4667a656f60327647805022e5811b6f2c42052 /ui/gtk/airpcap_gui_utils.c
parent0165b8c40cfd6ca529408862095c1213bdf1ebd5 (diff)
format_text_wmem -> format_text
All cases of the "original" format_text have been handled to add the proper wmem allocator scope. Remove the "original" format_text and replace it with one that has a wmem allocator as a parameter. Change-Id: I278b93bcb4a17ff396413b75cd332f5fc2666719 Reviewed-on: https://code.wireshark.org/review/19884 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/gtk/airpcap_gui_utils.c')
-rw-r--r--ui/gtk/airpcap_gui_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/airpcap_gui_utils.c b/ui/gtk/airpcap_gui_utils.c
index f71ef82ad6..61fa4cd6bd 100644
--- a/ui/gtk/airpcap_gui_utils.c
+++ b/ui/gtk/airpcap_gui_utils.c
@@ -913,7 +913,7 @@ print_key_list(GList* key_list)
else
g_print("TYPE: %s\n","???");
- ssid = format_text_wmem(NULL, (guchar *)tmp->ssid->data, tmp->ssid->len);
+ ssid = format_text(NULL, (guchar *)tmp->ssid->data, tmp->ssid->len);
g_print("SSID: %s\n",(tmp->ssid != NULL) ? ssid : "---");
g_print("\n");
wmem_free(NULL, ssid);