aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btsdp.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-06-20 16:31:53 +0000
committerEvan Huus <eapache@gmail.com>2013-06-20 16:31:53 +0000
commit5d53d63cd79f48f15c16f41efe74c2a91a0c5003 (patch)
tree8295b22f500dc1517a113f85a3053d4367c99915 /epan/dissectors/packet-btsdp.h
parent612d14c883ddc4aa46469c49183f53c99fdb634e (diff)
From Michal Labedzki via
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8824 Convert bluetooth emem trees to wmem trees. Add modelines and fix indentation. Correct typo in wmem_tree.h that still referred to emem. svn path=/trunk/; revision=50076
Diffstat (limited to 'epan/dissectors/packet-btsdp.h')
-rw-r--r--epan/dissectors/packet-btsdp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/epan/dissectors/packet-btsdp.h b/epan/dissectors/packet-btsdp.h
index a8a54b40a3..d9d7780ad4 100644
--- a/epan/dissectors/packet-btsdp.h
+++ b/epan/dissectors/packet-btsdp.h
@@ -24,6 +24,8 @@
#ifndef __PACKET_BTSDP_H__
#define __PACKET_BTSDP_H__
+#include <epan/wmem/wmem.h>
+
/*
* Based on value provided by Bluetooth SIG:
* https://www.bluetooth.org/Technical/AssignedNumbers/service_discovery.htm
@@ -132,7 +134,7 @@
#define BTSDP_GENERIC_NETWORKING_SERVICE_UUID 0x1201
#define BTSDP_GENERIC_FILE_TRANSFER_SERVICE_UUID 0x1202
-#define BTSDP_GENERIC_AUDIO_SERVICE_UUID 0x1203
+#define BTSDP_GENERIC_AUDIO_SERVICE_UUID e 0x1203
#define BTSDP_GENERIC_TELEPHONY_SERVICE_UUID 0x1204
#define BTSDP_ESDP_UPNP_SERVICE_SERVICE_UUID 0x1205
@@ -195,7 +197,7 @@ typedef struct _service_info_t {
extern value_string_ext vs_service_classes_ext;
typedef struct _sdp_package_t {
- emem_tree_t *service_infos;
+ wmem_tree_t *service_infos;
} sdp_package_t;
#endif