Commit 9206b056 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Add warning for existing /etc/babel.conf.

parent e45cfcfe
...@@ -244,6 +244,10 @@ main(int argc, char **argv) ...@@ -244,6 +244,10 @@ main(int argc, char **argv)
config_file); config_file);
exit(1); exit(1);
} }
} else {
if(access("/etc/babel.conf", F_OK) >= 0)
fprintf(stderr,
"Warning: /etc/babel.conf exists, it will be ignored.\n");
} }
if(wireless_hello_interval <= 0) if(wireless_hello_interval <= 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment