summaryrefslogtreecommitdiff
path: root/epan/conversation.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-06-01 06:14:08 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-06-01 06:14:08 +0000
commitd8d6de9561ae5d61a12778117a030c858f608195 (patch)
tree64bb07467d18bec7e99a96c75b5778ebdf41d366 /epan/conversation.c
parentfcfb9795d2b86410fda0c9a2b94ae1804ef50257 (diff)
downloadwireshark-d8d6de9561ae5d61a12778117a030c858f608195.tar.gz
Remove debug code left by mistake
svn path=/trunk/; revision=42959
Diffstat (limited to 'epan/conversation.c')
-rw-r--r--epan/conversation.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/epan/conversation.c b/epan/conversation.c
index f290a96f7d..ad87f03df6 100644
--- a/epan/conversation.c
+++ b/epan/conversation.c
@@ -223,8 +223,6 @@ conversation_match_exact(gconstpointer v, gconstpointer w)
* Yes. It's the same conversation, and the two
* address/port pairs are going in the same direction.
*/
- g_warning("conversation_match_exact v1->addr1 %s v2->addr1 %s",ep_address_to_str(&v1->addr1),ep_address_to_str(&v2->addr1));
- g_warning("conversation_match_exact v1->addr2 %s v2->addr2 %s",ep_address_to_str(&v1->addr2),ep_address_to_str(&v2->addr2));
return 1;
}
@@ -242,8 +240,6 @@ conversation_match_exact(gconstpointer v, gconstpointer w)
* Yes. It's the same conversation, and the two
* address/port pairs are going in opposite directions.
*/
- g_warning("conversation_match_exact v1->addr2 %s v2->addr1 %s",ep_address_to_str(&v1->addr2),ep_address_to_str(&v2->addr1));
- g_warning("conversation_match_exact v1->addr1 %s v2->addr2 %s",ep_address_to_str(&v1->addr1),ep_address_to_str(&v2->addr2));
return 1;
}