aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nhrp.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-18 23:22:47 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-12-18 23:22:47 +0000
commit22cf051dc7cc75c73a37e7ab19676e1e203be782 (patch)
tree3b8fb5123fd79a1ddeae507480b9b343d1f074c5 /epan/dissectors/packet-nhrp.c
parente59c54c16c4d6289c9c0a06f3f6b5db42b37fdc8 (diff)
warning: C++ style comments are not allowed in ISO C90
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16853 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-nhrp.c')
-rw-r--r--epan/dissectors/packet-nhrp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-nhrp.c b/epan/dissectors/packet-nhrp.c
index ac659a7e48..506fa8c949 100644
--- a/epan/dissectors/packet-nhrp.c
+++ b/epan/dissectors/packet-nhrp.c
@@ -381,7 +381,7 @@ void dissect_nhrp_mand(tvbuff_t *tvb,
offset += 2;
}
- // TBD : Check for hdr->afn
+ /* TBD : Check for hdr->afn */
shl = hdr->ar_shtl & 0x3f;
if (shl) {
tvb_ensure_bytes_exist(tvb, offset, shl);
@@ -523,7 +523,7 @@ void dissect_nhrp_mand(tvbuff_t *tvb,
*pOffset = mandEnd;
}
-// TBD : Decode Authentication Extension and Vendor Specific Extension
+/* TBD : Decode Authentication Extension and Vendor Specific Extension */
void dissect_nhrp_ext(tvbuff_t *tvb,
proto_tree *tree,
gint *pOffset,
@@ -582,7 +582,7 @@ void dissect_nhrp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_item *ti = NULL;
proto_tree *nhrp_tree = NULL;
- // Fixed header is always 20 bytes.
+ /* Fixed header is always 20 bytes. */
tvb_ensure_bytes_exist(tvb, offset, 20);
memset(&hdr, 0, sizeof(e_nhrp_hdr));