aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-09 00:57:48 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-09 00:57:48 +0000
commit32a44690cd5fe5468ef883a36cbc5259653e7d63 (patch)
tree6727c5697922c9e063ad2c4c9869d81713af65d5 /epan/conversation.c
parent9758b3928d2cb51a1bb9b2b1ab1fd4952280216e (diff)
Fix a comment.
svn path=/trunk/; revision=9605
Diffstat (limited to 'epan/conversation.c')
-rw-r--r--epan/conversation.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/conversation.c b/epan/conversation.c
index 95e6536999..f5ad54b4f1 100644
--- a/epan/conversation.c
+++ b/epan/conversation.c
@@ -1,7 +1,7 @@
/* conversation.c
* Routines for building lists of packets that are part of a "conversation"
*
- * $Id: conversation.c,v 1.23 2002/12/08 02:32:36 gerald Exp $
+ * $Id: conversation.c,v 1.24 2004/01/09 00:57:48 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -491,7 +491,7 @@ void
conversation_set_port2(conversation_t *conv, guint32 port)
{
/*
- * If the port 2 value is wildcarded, don't set it.
+ * If the port 2 value is not wildcarded, don't set it.
*/
if (!(conv->options & NO_PORT2))
return;
@@ -522,7 +522,7 @@ void
conversation_set_addr2(conversation_t *conv, address *addr)
{
/*
- * If the address 2 value is wildcarded, don't set it.
+ * If the address 2 value is not wildcarded, don't set it.
*/
if (!(conv->options & NO_ADDR2))
return;