diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-10-27 03:10:37 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-10-27 03:10:37 +0000 |
commit | 93dd1c452d50a3b5169b0ed8c1527b0ea4597867 (patch) | |
tree | 377be9b16bb1fea0be98171ea5020f2dc589096f /packet-ospf.c | |
parent | 5ecad5b6e3298468a147988089e2f52ec43b0bc5 (diff) | |
download | wireshark-93dd1c452d50a3b5169b0ed8c1527b0ea4597867.tar.gz wireshark-93dd1c452d50a3b5169b0ed8c1527b0ea4597867.tar.bz2 wireshark-93dd1c452d50a3b5169b0ed8c1527b0ea4597867.zip |
Get rid of a presumed debugging "printf()".
svn path=/trunk/; revision=934
Diffstat (limited to 'packet-ospf.c')
-rw-r--r-- | packet-ospf.c | 3 |
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; |