diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 18:15:20 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 18:15:20 +0000 |
commit | e88b9e25fc848c2afcade77c96b81f8a972060cb (patch) | |
tree | 43074327c7dddde685a40f58040cfcafd0f8e296 | |
parent | 421e5985c39943b1193300c0b633cc819d42799c (diff) |
Whoops, forgot a NULL
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3643 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/inspircd_io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index 15b5fb5a2..3b3386e61 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -519,7 +519,7 @@ void ServerConfig::Read(bool bail, userrec* user) std::stringstream errstr; /* String stream containing the error output */ /* These tags MUST occur and must ONLY occur once in the config file */ - static char* Once[] = { "server", "admin", "files", "power", "options", "pid" }; + static char* Once[] = { "server", "admin", "files", "power", "options", "pid", NULL }; /* These tags can occur ONCE or not at all */ static InitialConfig Values[] = { |