aboutsummaryrefslogtreecommitdiffstats
path: root/epan/circuit.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-09 01:02:10 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-09 01:02:10 +0000
commiteff17e272d67d1f78a0c21d854e537436ad18036 (patch)
tree7f3d9587783768b932d8bf9c107ede0b5bc4d0ee /epan/circuit.c
parent32a44690cd5fe5468ef883a36cbc5259653e7d63 (diff)
Fix a typo.
svn path=/trunk/; revision=9606
Diffstat (limited to 'epan/circuit.c')
-rw-r--r--epan/circuit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/circuit.c b/epan/circuit.c
index 569c921c10..64fc6f9a0f 100644
--- a/epan/circuit.c
+++ b/epan/circuit.c
@@ -1,7 +1,7 @@
/* circuit.c
* Routines for building lists of packets that are part of a "circuit"
*
- * $Id: circuit.c,v 1.7 2002/11/28 08:25:59 guy Exp $
+ * $Id: circuit.c,v 1.8 2004/01/09 01:02:10 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -161,7 +161,7 @@ circuit_new(circuit_type ctype, guint32 circuit_id, guint32 first_frame)
/*
* Yes. Find the last circuit in the list of circuits
* with this circuit ID, and if its last frame isn't
- * know, make it be the previous frame to this one.
+ * known, make it be the previous frame to this one.
*/
while (old_circuit->next != NULL)
old_circuit = old_circuit->next;