diff options
Diffstat (limited to 'src/tipideed/log.c')
-rw-r--r-- | src/tipideed/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tipideed/log.c b/src/tipideed/log.c index f5f2e81..b08e16f 100644 --- a/src/tipideed/log.c +++ b/src/tipideed/log.c @@ -44,10 +44,10 @@ void log_regular (char const *fn, char const *sizefmt, int ishead, char const *c strerr_warni8x("sending ", ishead ? "headers for " : "", "regular file ", fn, " (", sizefmt, " bytes) with type ", ct) ; } -void log_304 (char const *fn) +void log_response (char const *ans, char const *fn) { if (g.verbosity >= 2) - strerr_warni2x("answering 304 for regular file ", fn) ; + strerr_warni4x("answering ", ans, fn ? " for " : 0, fn) ; } void log_nph (char const *const *argv, char const *const *envp) |