From ba6dae676a5c268d6b4265d26b9556ba1cfa6923 Mon Sep 17 00:00:00 2001 From: frosty Date: Mon, 4 May 2026 20:42:12 -0400 Subject: feat: remove domain field from config and derive domain from headers --- src/Config.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/Config.c') diff --git a/src/Config.c b/src/Config.c index 967a4b4..9883d45 100644 --- a/src/Config.c +++ b/src/Config.c @@ -65,11 +65,9 @@ int load_config(const char *filename, Config *config) { config->host[sizeof(config->host) - 1] = '\0'; } else if (strcmp(key, "port") == 0) { config->port = atoi(value); - } else if (strcmp(key, "domain") == 0) { - strncpy(config->domain, value, sizeof(config->domain) - 1); - config->domain[sizeof(config->domain) - 1] = '\0'; } else if (strcmp(key, "locale") == 0) { - strncpy(config->default_locale, value, sizeof(config->default_locale) - 1); + strncpy(config->default_locale, value, + sizeof(config->default_locale) - 1); config->default_locale[sizeof(config->default_locale) - 1] = '\0'; } } else if (strcmp(section, "proxy") == 0) { -- cgit v1.3