From 8897b746907f94c242e624871b33d1157d2836a0 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Wed, 14 Dec 2011 23:13:12 +0000 Subject: [PATCH] Removed sleep() from root privileges message, reworded. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15121 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/core.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/core.c b/src/common/core.c index 5b00f228b2..6bc91c9471 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 }