summaryrefslogtreecommitdiff
path: root/epan/asn1.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-08-08 18:50:39 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-08-08 18:50:39 +0000
commit0dc9fb3d4ab00d14bf45c597471e10e601efd4d4 (patch)
treeae44175ca8fd23548fcec5833098b535af5e372c /epan/asn1.c
parentf3407856f4fd97caf90655205cdb2c66991e75ba (diff)
downloadwireshark-0dc9fb3d4ab00d14bf45c597471e10e601efd4d4.tar.gz
various code cleanup:
-use g_snprintf instead of sprintf and snprintf -use g_strdup_printf where appropriate -remove #include "snprintf.h" (as only g_snprintf should be used) -replace some more alloc/realloc/calloc/free with their glib pendants svn path=/trunk/; revision=15264
Diffstat (limited to 'epan/asn1.c')
-rw-r--r--epan/asn1.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/epan/asn1.c b/epan/asn1.c
index d3d9fc02f3..5d118479aa 100644
--- a/epan/asn1.c
+++ b/epan/asn1.c
@@ -66,10 +66,6 @@
#include <glib.h>
-#ifdef NEED_SNPRINTF_H
-# include "snprintf.h"
-#endif
-
#include <epan/tvbuff.h>
#include <epan/asn1.h>
@@ -1077,7 +1073,7 @@ asn1_err_to_str(int err)
break;
default:
- snprintf(errstrbuf, sizeof errstrbuf, "Unknown error (%d)", err);
+ g_snprintf(errstrbuf, sizeof errstrbuf, "Unknown error (%d)", err);
errstr = errstrbuf;
break;
}