summaryrefslogtreecommitdiffstats
path: root/include/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/server.h')
-rw-r--r--include/server.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/server.h b/include/server.h
index 3435b1f..fe7cb9b 100644
--- a/include/server.h
+++ b/include/server.h
@@ -26,8 +26,7 @@ struct gmnisrv_client {
SSL *ssl;
BIO *bio, *sbio;
- char buf[BUFSIZ];
- static_assert(BUFSIZ >= GEMINI_MAX_URL + 3);
+ char buf[BUFSIZ < GEMINI_MAX_URL + 3 ? GEMINI_MAX_URL + 3 : BUFSIZ];
size_t bufix, bufln;
enum response_state state;