From 19d37a6020cd6aa3171c04d6f79e54985f739504 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sun, 12 Nov 2023 22:05:13 +0100 Subject: [PATCH] Fix hint of dns.cnameRecords Signed-off-by: DL6ER --- src/config/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/config.c b/src/config/config.c index 8c8874e4..dbe2bcdb 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -528,7 +528,7 @@ void initConfig(struct config *conf) conf->dns.cnameRecords.k = "dns.cnameRecords"; conf->dns.cnameRecords.h = "List of CNAME records which indicate that is really . If the is given, it overwrites the value of local-ttl"; - conf->dns.cnameRecords.a = cJSON_CreateStringReference("Array of static leases each on in one of the following forms: \",[,]\""); + conf->dns.cnameRecords.a = cJSON_CreateStringReference("Array of CNAMEs each on in one of the following forms: \",[,]\""); conf->dns.cnameRecords.t = CONF_JSON_STRING_ARRAY; conf->dns.cnameRecords.f = FLAG_RESTART_FTL | FLAG_ADVANCED_SETTING; conf->dns.cnameRecords.d.json = cJSON_CreateArray();