From dc9485bba1b4ca693b274c369be4e3730b24540c Mon Sep 17 00:00:00 2001 From: Joshua Kwan Date: Wed, 21 Jan 2004 01:47:02 +0000 Subject: [PATCH] make an error message clearer git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@135 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- config.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.y b/config.y index 485cd11..c211e26 100644 --- a/config.y +++ b/config.y @@ -133,7 +133,7 @@ KeyPair: KeyType '=' TYPE_VALUE { /* Naive user protection - do not allow running as user root */ if ($3 == 0) { - fprintf(stderr, "%s: I refuse to run as root! Aborting.\n", config); + fprintf(stderr, "%s: I refuse to run as uid 0 (root)! Aborting.\n", config); graceful_exit(1); } myconfig->shed_uid = $3; -- 2.47.3