aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-11-03 18:37:29 +0000
committerBill Meier <wmeier@newsguy.com>2010-11-03 18:37:29 +0000
commitf329864abfdd698c770769d99dcc1ed21f94b819 (patch)
treec5c2af1fba77d69686096c5e078d9bf9bbe70a1c /epan/dissectors/packet-sip.c
parent0ca948bacf0c180349c3a40b14e77b1d9ef738d7 (diff)
(Trivial): Fix up a comment.
svn path=/trunk/; revision=34764
Diffstat (limited to 'epan/dissectors/packet-sip.c')
-rw-r--r--epan/dissectors/packet-sip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index 442d3c3eec..f0d7027988 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -863,11 +863,11 @@ sip_init_protocol(void)
if (sip_hash)
g_hash_table_destroy(sip_hash);
- /* Now create them over */
+ /* Now create them again */
sip_hash = g_hash_table_new(g_str_hash , sip_equal);
- /* Create a hastable with the SIP headers it will be used to find the related hf entry (POS_x)
- * this is faster than the previously used for loop
- * There is no g_hash_table_destroy as the liftime is the same as the lifetime of Wireshark
+ /* Create a hashtable with the SIP headers; it will be used to find the related hf entry (POS_x).
+ * This is faster than the previously used for loop.
+ * There is no g_hash_table_destroy as the lifetime is the same as the lifetime of Wireshark.
*/
if(!sip_headers_hash){
sip_headers_hash = g_hash_table_new(g_str_hash , g_str_equal);