summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-arcnet.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-10-19 09:39:59 -0700
committerGuy Harris <guy@alum.mit.edu>2015-10-19 16:40:43 +0000
commit90c4cbef192b299b424d03a3de1727bf2dd0af4a (patch)
tree74889d41079450c9106f741c1c9d288bb24884ed /epan/dissectors/packet-arcnet.c
parent7fc88045ea7ea36ee1b1c8a7bf57a112dbb838d6 (diff)
downloadwireshark-90c4cbef192b299b424d03a3de1727bf2dd0af4a.tar.gz
If it's used by dissectors, it belongs in to_str.h, not to_str-int.h.
Assuming *any* of the routines that generate printable strings should be thought of as "for internal use by libwireshark routines only, not by dissectors", the ones that *are* used by dissectors obviously shouldn't be. The ability for dissectors to register address types certainly expands the list of routines they would use. Move everything used by dissectors from to_str-int.h into to_str.h, and have dissectors not include to_str-int.h. (Perhaps we should just get rid of to_str-int.h altogether.) Change-Id: I3c583351f038233c9bcd8f9216188f82630267fa Reviewed-on: https://code.wireshark.org/review/11149 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-arcnet.c')
-rw-r--r--epan/dissectors/packet-arcnet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-arcnet.c b/epan/dissectors/packet-arcnet.c
index c7fbfd1618..7aec361f56 100644
--- a/epan/dissectors/packet-arcnet.c
+++ b/epan/dissectors/packet-arcnet.c
@@ -28,7 +28,7 @@
#include "packet-arcnet.h"
#include <epan/address_types.h>
#include <epan/arcnet_pids.h>
-#include <epan/to_str-int.h>
+#include <epan/to_str.h>
#include "packet-ip.h"
void proto_register_arcnet(void);