aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ospf.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-10-27 03:10:37 +0000
committerGuy Harris <guy@alum.mit.edu>1999-10-27 03:10:37 +0000
commit93dd1c452d50a3b5169b0ed8c1527b0ea4597867 (patch)
tree377be9b16bb1fea0be98171ea5020f2dc589096f /packet-ospf.c
parent5ecad5b6e3298468a147988089e2f52ec43b0bc5 (diff)
Get rid of a presumed debugging "printf()".
svn path=/trunk/; revision=934
Diffstat (limited to 'packet-ospf.c')
-rw-r--r--packet-ospf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/packet-ospf.c b/packet-ospf.c
index d54aa920c9..1179e46dd3 100644
--- a/packet-ospf.c
+++ b/packet-ospf.c
@@ -2,7 +2,7 @@
* Routines for OSPF packet disassembly
* (c) Copyright Hannes R. Boehm <hannes@boehm.org>
*
- * $Id: packet-ospf.c,v 1.14 1999/10/19 15:59:03 gram Exp $
+ * $Id: packet-ospf.c,v 1.15 1999/10/27 03:10:37 guy Exp $
*
* At this time, this module is able to analyze OSPF
* packets as specified in RFC2328. MOSPF (RFC1584) and other
@@ -226,7 +226,6 @@ dissect_ospf_hello(const u_char *pd, int offset, frame_data *fd, proto_tree *tre
offset+=20;
while(((int)(pi.captured_len - offset)) >= 4){
- printf("%d", pi.captured_len - offset);
ospfneighbor=(guint32 *) &pd[offset];
proto_tree_add_text(ospf_hello_tree, offset, 4, "Active Neighbor: %s", ip_to_str((guint8 *) ospfneighbor));
offset+=4;