summaryrefslogtreecommitdiff
path: root/src/common/core.c
diff options
context:
space:
mode:
authorshennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-14 23:13:12 +0000
committershennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-14 23:13:12 +0000
commit9fa437853b643c4365ba20159f370529fcc2f956 (patch)
tree559d35367a3061f9acc7d776eb74172f2a82cc77 /src/common/core.c
parent09ce66afa4552cca48beb77b06f8b196d9658e26 (diff)
downloadhercules-9fa437853b643c4365ba20159f370529fcc2f956.tar.gz
hercules-9fa437853b643c4365ba20159f370529fcc2f956.tar.bz2
hercules-9fa437853b643c4365ba20159f370529fcc2f956.tar.xz
hercules-9fa437853b643c4365ba20159f370529fcc2f956.zip
Removed sleep() from root privileges message, reworded.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15121 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/core.c')
-rw-r--r--src/common/core.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/core.c b/src/common/core.c
index 5b00f228b..6bc91c947 100644
--- a/src/common/core.c
+++ b/src/common/core.c
@@ -205,9 +205,7 @@ void usercheck(void)
{
#ifndef _WIN32
if ((getuid() == 0) && (getgid() == 0)) {
- ShowWarning ("You are running eAthena as the root superuser.\n");
- ShowWarning ("It is unnecessary and unsafe to run eAthena with root privileges.\n");
- sleep(3);
+ ShowWarning ("You are running rAthena with root privileges, it is not necessary.\n");
}
#endif
}