aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-08-03 16:11:23 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-08-03 16:11:23 +0000
commitd8c21bbe382a1b156e8afda21b5d9a983eae0d72 (patch)
tree53bfac31f7b400db3198dc6fc7036895ef90f790
parent86e0bde995d813803dd41ec6ba5f3911c29d8015 (diff)
Revert previous checkin.
svn path=/trunk/; revision=25910
-rw-r--r--epan/base64.c1
-rw-r--r--epan/base64.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/epan/base64.c b/epan/base64.c
index be9fe3a26f..7a5966d843 100644
--- a/epan/base64.c
+++ b/epan/base64.c
@@ -27,7 +27,6 @@
#endif
#include <string.h>
-#include "epan/tvbuff.h"
#include "base64.h"
/* Decode a base64 string in-place - simple and slow algorithm.
diff --git a/epan/base64.h b/epan/base64.h
index 0a1b94709e..ffef8ebf17 100644
--- a/epan/base64.h
+++ b/epan/base64.h
@@ -28,6 +28,7 @@
extern "C" {
#endif /* __cplusplus */
+#include "epan/tvbuff.h"
/* In-place decoding of a base64 string. */
size_t epan_base64_decode(char *s);