diff options
| author | Alexander Barton <alex@barton.de> | 2005-07-08 21:04:39 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2005-07-08 21:04:39 +0000 |
| commit | ead79d3e39954ca8eed73f45cfc30287da79d46a (patch) | |
| tree | d781e77b2dfca33461ec6c81ee6b0a258b7adab9 | |
| parent | 0e2f5a4f3dc0704940cf58bf90d5dd9b8caf9940 (diff) | |
| download | ngircd-ead79d3e39954ca8eed73f45cfc30287da79d46a.tar.gz ngircd-ead79d3e39954ca8eed73f45cfc30287da79d46a.zip | |
Use "ServerUID" (and not internal variable name) for error message.
| -rw-r--r-- | src/ngircd/ngircd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/ngircd.c b/src/ngircd/ngircd.c index 7ef93175..985d09a9 100644 --- a/src/ngircd/ngircd.c +++ b/src/ngircd/ngircd.c @@ -12,7 +12,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: ngircd.c,v 1.104 2005/07/08 16:18:39 alex Exp $"; +static char UNUSED id[] = "$Id: ngircd.c,v 1.105 2005/07/08 21:04:39 alex Exp $"; /** * @file @@ -712,7 +712,7 @@ NGIRCd_Init( bool NGIRCd_NoDaemon ) } if ( Conf_UID == 0 ) { - Log( LOG_INFO, "Conf_UID must not be 0, switching to user nobody", Conf_UID ); + Log( LOG_INFO, "ServerUID must not be 0, switching to user nobody", Conf_UID ); if (!NGIRCd_getNobodyID(&Conf_UID, &Conf_GID )) { Log( LOG_WARNING, "Could not get uid/gid of user nobody: %s", |