From: Joshua Kwan Date: Wed, 21 Jan 2004 01:47:02 +0000 (+0000) Subject: make an error message clearer X-Git-Tag: v1.6.1-roc-dev~563 X-Git-Url: https://skyeroc.xyz/gitweb/?a=commitdiff_plain;h=dc9485bba1b4ca693b274c369be4e3730b24540c;p=dgamelaunch make an error message clearer git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@135 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- 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;