summaryrefslogtreecommitdiff
path: root/src/http_kv.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2022-05-03 01:10:10 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2022-05-11 23:51:47 -0400
commitf2610d23e242e96b49b115081c094206cca3e00d (patch)
tree5a91643123b35c77d37beab2debc24a477ffd275 /src/http_kv.c
parent1194e6d24b92d1bdac60eb07ef45ad726d479654 (diff)
downloadlighttpd-git-f2610d23e242e96b49b115081c094206cca3e00d.tar.gz
[multiple] use buffer_append_char()
Diffstat (limited to 'src/http_kv.c')
-rw-r--r--src/http_kv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http_kv.c b/src/http_kv.c
index 1dccd5cc..3110f23e 100644
--- a/src/http_kv.c
+++ b/src/http_kv.c
@@ -212,7 +212,7 @@ void http_status_append(buffer * const b, const int status) {
buffer_append_string_len(b, kv->value, kv->vlen);
else {
buffer_append_int(b, status);
- buffer_append_string_len(b, CONST_STR_LEN(" "));
+ buffer_append_char(b, ' ');
}
}