aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-05-15 23:39:06 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-05-15 23:39:06 +0000
commit6f2b6538ebe708d47924f5e5c65d94e93af3b8a7 (patch)
treed72c387ee65be4b3bac49336cdf3c341ce6ed62b /epan
parent9d9aa0f2414798b33a34f8444c41c7662bedf5c2 (diff)
ifdef out dissect_osinlcp_opt_type_len since it's not used--should it be?
svn path=/trunk/; revision=42643
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ppp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ppp.c b/epan/dissectors/packet-ppp.c
index 3e17d489c2..4572887915 100644
--- a/epan/dissectors/packet-ppp.c
+++ b/epan/dissectors/packet-ppp.c
@@ -3097,6 +3097,7 @@ dissect_ipcp_sec_nbns_opt(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
}
+#if 0
static void
dissect_osinlcp_opt_type_len(tvbuff_t *tvb, int offset, proto_tree *tree,
const char *name)
@@ -3108,6 +3109,7 @@ dissect_osinlcp_opt_type_len(tvbuff_t *tvb, int offset, proto_tree *tree,
type, "%s (%u)", name, type);
proto_tree_add_item(tree, hf_osinlcp_opt_length, tvb, offset + 1, 1, ENC_NA);
}
+#endif
static void
dissect_osinlcp_align_npdu_opt(const ip_tcp_opt *optp, tvbuff_t *tvb, int offset,
guint length, packet_info *pinfo _U_,