aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column.c
diff options
context:
space:
mode:
authordimeg <dimeg@f5534014-38df-0310-8fa8-9805f1628bb7>2010-01-25 18:14:01 +0000
committerdimeg <dimeg@f5534014-38df-0310-8fa8-9805f1628bb7>2010-01-25 18:14:01 +0000
commit17cf4b677aa6fe4633db57e060f10b072a6823b9 (patch)
tree6ebeb42a699efcb948a394bfaba245aa963934c7 /epan/column.c
parenta50356a7a7b7a46446501122c3c49f53093dcbd8 (diff)
Change the prefix of the underscore escaping/unescaping
functions from g_ to ws_; Insert function names in libwireshark.def git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31662 f5534014-38df-0310-8fa8-9805f1628bb7
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;