aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-30 04:03:32 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-30 04:03:32 +0000
commit4b58d19fb814a4001e05cc489590b366f5565ef5 (patch)
treec5f01108009907e722c0cf906859ec736cd9f142 /file.c
parent245af55cc2f806e50fdf998b9363322a6b9e48de (diff)
Again, the err_info returned from wtap_read() and wtap_seek_read() is a
g_mallocated string, so it's not const. Fix a comment to reflect reality (err_info is some additional information about the error returned by Wiretap, e.g. some gory details about the error, mainly useful to developers and support people). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25401 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index ed9c458e06..38e5eda0a0 100644
--- a/file.c
+++ b/file.c
@@ -3787,7 +3787,7 @@ file_rename_error_message(int err)
}
char *
-cf_read_error_message(int err, const gchar *err_info)
+cf_read_error_message(int err, gchar *err_info)
{
static char errmsg_errno[1024+1];