aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrunfink <grunfink@comam.es>2026-06-10 09:46:33 +0200
committergrunfink <grunfink@comam.es>2026-06-10 09:46:33 +0200
commita0fada72cc4829d757a8691d214069b27aa80fbb (patch)
tree4ea6c431bd35466e4d9a40011ecf00777ebc5944
parent46ec5b0aa0f730dde5fe8999d4d69e782383b778 (diff)
Tweaked first httpd log line.
-rw-r--r--httpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/httpd.c b/httpd.c
index 5957cd6..acbe895 100644
--- a/httpd.c
+++ b/httpd.c
@@ -1067,8 +1067,8 @@ void httpd(void)
signal(SIGTERM, term_handler);
signal(SIGINT, term_handler);
- srv_log(xs_fmt("httpd%s start %s %s", p_state->use_fcgi ? " (FastCGI)" : "",
- full_address, USER_AGENT));
+ srv_log(xs_fmt(USER_AGENT " httpd%s start %s", p_state->use_fcgi ? " (FastCGI)" : "",
+ full_address));
/* show the number of usable file descriptors */
struct rlimit r;