aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-02-27 14:03:48 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-02-27 14:03:48 +0000
commit714c64ab97fc2828bd1b5aaf5588cafd63cea617 (patch)
tree04a2d4bf2f1d584a813b04dd204de270d785838b
parent21a8f186bb6d46a2e0f75c9912ec1848fe83a51c (diff)
Solving minor annoyances.
svn path=/trunk/; revision=17421
-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);
}
}