From 22aef989975b4455cfd267f47e67e0ea4d1bac72 Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Sat, 14 Feb 2026 11:42:22 +0000 Subject: Add missing option to default config generator in config.c. --- config.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'config.c') diff --git a/config.c b/config.c index 9957e19..938b597 100644 --- a/config.c +++ b/config.c @@ -434,7 +434,11 @@ int createconfigfile(char *filename) { "alertunautheddisconnect = \"1\"\n" "\n" "# Send NOTICE to all other clients upon authenticated client disconnections (\"1\" for yes or \"0\" for no)\n" - "alertautheddisconnect = \"1\"\n"; + "alertautheddisconnect = \"1\"\n" + "\n" + "# Check for updates upon startup and successful client authentication (\"1\" for yes or \"0\" for no)\n" + "# This sends a DNS TXT request to blatech.net, disable this if you do not wish for that to happen\n" + "checkupdates = \"1\"\n"; // Write complete string to file if ((fprintf(fp, "%s", string)) < 0) { -- cgit v1.2.3