diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-04 06:25:23 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-04 06:25:23 +0000 |
commit | 24fc512fd97310e2fbe339a166dbfa7b26e8c31b (patch) | |
tree | dde897f2f1663330f6c8d00a2168e81d15d69c12 /src | |
parent | 98c867cf09343fa3161a1f6e712aa48299a33db8 (diff) |
Remove duplicate error messages
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3822 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd_io.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index bac5d2c1e..8df18bcc7 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -692,7 +692,8 @@ void ServerConfig::Read(bool bail, userrec* user) if (bail) { - printf("There were errors in your configuration:\n%s",errstr.str().c_str()); + /* Unneeded because of the log() aboive? */ + // printf("There were errors in your configuration:\n%s",errstr.str().c_str()); Exit(0); } else |