aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column.c
diff options
context:
space:
mode:
authorGerasimos Dimitriadis <dimeg@intracom.gr>2010-01-25 18:14:01 +0000
committerGerasimos Dimitriadis <dimeg@intracom.gr>2010-01-25 18:14:01 +0000
commit065546cdcb5b8e7a78ad93f011c3ad50ae2500e2 (patch)
tree6ebeb42a699efcb948a394bfaba245aa963934c7 /epan/column.c
parentf1f528deeb799ede12c04297454858531b39432c (diff)
Change the prefix of the underscore escaping/unescaping
functions from g_ to ws_; Insert function names in libwireshark.def svn path=/trunk/; revision=31662
Diffstat (limited to 'epan/column.c')
-rw-r--r--epan/column.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/column.c b/epan/column.c
index b944b227c7..e1e22cf2dc 100644
--- a/epan/column.c
+++ b/epan/column.c
@@ -733,7 +733,7 @@ build_column_format_array(column_info *cinfo, gint num_cols, gboolean reset_fenc
* every underscore in it.
*/
gchar*
-g_strdup_escape_underscore (const gchar *str)
+ws_strdup_escape_underscore (const gchar *str)
{
gchar *p, *q, *new_str;
@@ -757,7 +757,7 @@ g_strdup_escape_underscore (const gchar *str)
}
gchar*
-g_strdup_unescape_underscore (const gchar *str)
+ws_strdup_unescape_underscore (const gchar *str)
{
gchar *p, *q, *new_str;