aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2017-11-08 11:34:09 +0100
committerStig Bjørlykke <stig@bjorlykke.org>2017-11-08 10:56:36 +0000
commit1a3bd52e9107d37c004bc094b633d2ce4455d150 (patch)
tree9efed199cc36814f6e069b7de764c5fa487a80ea /epan
parent465f75b5292e4c57762200ca1b87cdb225dd6484 (diff)
btmesh: Fix building without gcrypt
Change-Id: If77b36d764c07acd87a553134cebff246b8368fe Reviewed-on: https://code.wireshark.org/review/24296 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Reviewed-by: Richard Sharpe <realrichardsharpe@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-btmesh.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/dissectors/packet-btmesh.c b/epan/dissectors/packet-btmesh.c
index eb641b9bc0..dbc8250025 100644
--- a/epan/dissectors/packet-btmesh.c
+++ b/epan/dissectors/packet-btmesh.c
@@ -828,6 +828,12 @@ dissect_btmesh_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *da
#else /* GCRYPT_VERSION_NUMBER >= 0x010600 */
+static gboolean
+create_master_security_keys(uat_btmesh_record_t * net_key_set _U_)
+{
+ return TRUE;
+}
+
/* Stub dissector if decryption not available on build system */
static gint
dissect_btmesh_msg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)