(Trivial): Fix up a comment.

svn path=/trunk/; revision=34764
This commit is contained in:
Bill Meier 2010-11-03 18:37:29 +00:00
parent 0ca948bacf
commit f329864abf
1 changed files with 4 additions and 4 deletions

View File

@ -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);