diff options
| author | 2006-08-11 09:28:31 +0000 | |
|---|---|---|
| committer | 2006-08-11 09:28:31 +0000 | |
| commit | 0ba3bb8ade1311bd21c2285dae7aab228a14c650 (patch) | |
| tree | 13573a2008cc20515e0b7e1c135de6ef1868cc4d /src/modules/m_httpd.cpp | |
| parent | extern time_t TIME -> InspIRCd::Time() (diff) | |
Change to use InspIRCd::Time()
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4874 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd.cpp')
| -rw-r--r-- | src/modules/m_httpd.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_httpd.cpp b/src/modules/m_httpd.cpp index c433553be..6e5ddd514 100644 --- a/src/modules/m_httpd.cpp +++ b/src/modules/m_httpd.cpp @@ -167,7 +167,8 @@ class HttpSocket : public InspSocket void SendHeaders(unsigned long size, int response, const std::string &extraheaders) { - struct tm *timeinfo = localtime(&TIME); + time_t local = this->Instance->Time(); + struct tm *timeinfo = localtime(&local); this->Write("HTTP/1.1 "+ConvToStr(response)+" "+Response(response)+"\r\nDate: "); this->Write(asctime(timeinfo)); if (extraheaders.empty()) |
