summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-03-03 13:13:29 +0100
committerJeff Morriss <jeff.morriss.ws@gmail.com>2015-03-03 15:01:48 +0000
commit90706569afaa4f7fdd9b4441cf2ab8466a2ac574 (patch)
treea97293e60d834d166f8e457316a68a8a91dda05b
parent2780a303ab0e8d293bd9be88b523de1bb02b413c (diff)
downloadwireshark-90706569afaa4f7fdd9b4441cf2ab8466a2ac574.tar.gz
SSTP: fix no previous prototype for proto_register_sstp/proto_reg_handoff_sstp [-Wmissing-prototypes]
Change-Id: I65c6cf59ec9e7eb64a665ea3b253db5200d19f4b Reviewed-on: https://code.wireshark.org/review/7507 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
-rw-r--r--epan/dissectors/packet-sstp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-sstp.c b/epan/dissectors/packet-sstp.c
index 5ca5534022..030c825f3a 100644
--- a/epan/dissectors/packet-sstp.c
+++ b/epan/dissectors/packet-sstp.c
@@ -33,6 +33,9 @@
#include <epan/packet.h>
#include "packet-tcp.h"
+void proto_register_sstp(void);
+void proto_reg_handoff_sstp(void);
+
#define SSTP_BITMASK_MAJORVERSION 0xF0
#define SSTP_BITMASK_MINORVERSION 0x0F
#define SSTP_BITMASK_CONTROLFLAG 0x01