diff options
| author | 2007-08-23 20:02:32 +0000 | |
|---|---|---|
| committer | 2007-08-23 20:02:32 +0000 | |
| commit | 01a414eeb019b7315724dd0e96bfbfe1675862f8 (patch) | |
| tree | d493c3c00ceacd1e45b968003b5a17a7a5b3a3d5 /src/inspircd.cpp | |
| parent | (Part manual merge) backport: (diff) | |
Fix a compilation bug that managed to sneak past me
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7806 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index dc601b648..7d4d6bca4 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -316,7 +316,7 @@ void InspIRCd::Rehash(int status) SI->WriteOpers("*** Rehashing config file %s due to SIGHUP",ServerConfig::CleanFilename(SI->ConfigFileName)); SI->CloseLog(); if (!SI->OpenLog(SI->Config->argv, SI->Config->argc)) - SI->WriteOpers("*** ERROR: Could not open logfile %s: %s\n\n", Config->logpath.c_str(), strerror(errno)); + SI->WriteOpers("*** ERROR: Could not open logfile %s: %s\n\n", SI->Config->logpath.c_str(), strerror(errno)); SI->RehashUsersAndChans(); FOREACH_MOD_I(SI, I_OnGarbageCollect, OnGarbageCollect()); SI->Config->Read(false,NULL); |
