From f329864abfdd698c770769d99dcc1ed21f94b819 Mon Sep 17 00:00:00 2001 From: Bill Meier Date: Wed, 3 Nov 2010 18:37:29 +0000 Subject: [PATCH] (Trivial): Fix up a comment. svn path=/trunk/; revision=34764 --- epan/dissectors/packet-sip.c | 8 ++++---- 1 file 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);