kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 12fc1396c13ad606c299615c0918846ae44ae2c9
parent 98929263e003af376add9af445667b00c7522029
Author: Joris Vink <joris@coders.se>
Date:   Tue, 30 Apr 2019 20:45:56 +0200

use / to split up name/version.

Diffstat:
src/curl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/curl.c b/src/curl.c @@ -77,7 +77,7 @@ kore_curl_sysinit(void) kore_pool_init(&fd_cache_pool, "fd_cache_pool", 100, sizeof(struct fd_cache)); - len = snprintf(user_agent, sizeof(user_agent), "kore-%s", kore_version); + len = snprintf(user_agent, sizeof(user_agent), "kore/%s", kore_version); if (len == -1 || (size_t)len >= sizeof(user_agent)) fatal("user-agent string too long"); }