Solving minor annoyances.

svn path=/trunk/; revision=17421
This commit is contained in:
Jaap Keuter 2006-02-27 14:03:48 +00:00
parent 21a8f186bb
commit 714c64ab97
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ static void
http_draw_hash_responses( gint * key _U_ , http_response_code_t *data, char * format)
{
if (data==NULL) {
g_warning("C'est quoi ce borderl key=%d\n", *key);
g_warning("No data available, key=%d\n", *key);
exit(EXIT_FAILURE);
}
if (data->packets==0)
@ -183,7 +183,7 @@ httpstat_reset(void *psp )
httpstat_t *sp=psp;
if (!sp) {
g_hash_table_foreach( sp->hash_responses, (GHFunc)http_reset_hash_responses, NULL);
g_hash_table_foreach( sp->hash_responses, (GHFunc)http_reset_hash_requests, NULL);
g_hash_table_foreach( sp->hash_requests, (GHFunc)http_reset_hash_requests, NULL);
}
}