aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tap-httpstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-httpstat.c b/tap-httpstat.c
index 34a266a549..0e55e5e5a7 100644
--- a/tap-httpstat.c
+++ b/tap-httpstat.c
@@ -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);
}
}