aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sctp.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-07-12 14:13:01 +0000
committerBill Meier <wmeier@newsguy.com>2009-07-12 14:13:01 +0000
commit9c4a21d9d3a25989b1fc197ae9f20261d81a52b8 (patch)
treede5a5a3b4cc7cde964cb8ff3afa84b977bc91a4e /epan/dissectors/packet-sctp.c
parentf3cd2bc5452fe296e1e34a2e2db3660be2511975 (diff)
Fix a typo
svn path=/trunk/; revision=29068
Diffstat (limited to 'epan/dissectors/packet-sctp.c')
-rw-r--r--epan/dissectors/packet-sctp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sctp.c b/epan/dissectors/packet-sctp.c
index 6084a0901c..0ab2ce6480 100644
--- a/epan/dissectors/packet-sctp.c
+++ b/epan/dissectors/packet-sctp.c
@@ -624,7 +624,7 @@ get_half_assoc(packet_info *pinfo, guint32 spt, guint32 dpt, guint32 vtag)
*hb = NULL;
}
} else {
- /* we foun no entry in the table add one (using reversed ports and src addresss) so that it can be matched later */
+ /* we found no entry in the table: add one (using reversed ports and src addresss) so that it can be matched later */
*(hb = se_alloc(sizeof(void*))) = ha;
k = make_address_key(spt, dpt, &(pinfo->src));
emem_tree_insert32_array(dirs_by_ptaddr, k, hb);