diff options
author | Mukund Sivaraman <muks@banu.com> | 2008-12-08 13:39:44 +0000 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2008-12-08 13:39:44 +0000 |
commit | 024b317de09a7d426973ffa16e4781ec75aaef35 (patch) | |
tree | 6994f5266e93773333bfa99fa24489ac139452a3 /src/stats.c | |
parent | 6e6f992f8cbc01ce4d6840d1a020f18846c37847 (diff) |
Convert tabs to spaces
Diffstat (limited to 'src/stats.c')
-rw-r--r-- | src/stats.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/stats.c b/src/stats.c index 4ec1bc9..3c3b0d9 100644 --- a/src/stats.c +++ b/src/stats.c @@ -95,20 +95,20 @@ showstats (struct conn_s *connptr) { message_buffer = safemalloc (MAXBUFFSIZE); if (!message_buffer) - return -1; + return -1; snprintf (message_buffer, MAXBUFFSIZE, msg, - PACKAGE, VERSION, PACKAGE, VERSION, - stats->num_open, - stats->num_reqs, - stats->num_badcons, stats->num_denied, - stats->num_refused, PACKAGE, VERSION); + PACKAGE, VERSION, PACKAGE, VERSION, + stats->num_open, + stats->num_reqs, + stats->num_badcons, stats->num_denied, + stats->num_refused, PACKAGE, VERSION); if (send_http_message (connptr, 200, "OK", message_buffer) < 0) - { - safefree (message_buffer); - return -1; - } + { + safefree (message_buffer); + return -1; + } safefree (message_buffer); return 0; |