diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-15 19:48:29 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-15 19:48:29 +0000 |
commit | 25ce714b64d987416bc7a605cfa0f621f39b450c (patch) | |
tree | 7b103b4719f9d7e311848bdbf6f6e5631c969082 | |
parent | 90dcc24c2a780cd381617d39f6c3454925d9ec70 (diff) |
Fix for warning in OpenLog call
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2803 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 64b74a2b9..2b380becf 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -377,7 +377,7 @@ void Rehash(int status) { WriteOpers("Rehashing config file %s due to SIGHUP",CONFIG_FILE); fclose(Config->log_file); - OpenLog(NULL,NULL); + OpenLog(NULL,0); Config->Read(false,NULL); } |