diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 98fb4b372..23167e0e9 100644 --- a/src/main.c +++ b/src/main.c @@ -467,6 +467,17 @@ int main(int ac, char **av, char **envp) my_av = av; my_envp = envp; +#ifndef _WIN32 + /* If we're root, issue a warning now */ + if ((getuid() == 0) && (getgid() == 0)) { + fprintf(stderr, + "WARNING: You are currently running Anope as the root superuser. Anope does not\n"); + fprintf(stderr, + " require root privileges to run, and it is discouraged that you run Anope\n"); + fprintf(stderr, " as the root superuser.\n"); + } +#endif + /* General initialization first */ if ((i = init_primary(ac, av)) != 0) return i; |