summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.c6
1 files changed, 5 insertions, 1 deletions
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) {