From 64087572950e3331029922626fa8605273c27da3 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 11 Nov 2007 19:24:30 +0000 Subject: More stuff incoming git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8575 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/configreader.cpp | 2 +- src/modules.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/configreader.cpp b/src/configreader.cpp index ec5f1fe54..7b033a64b 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -1297,7 +1297,7 @@ void ServerConfig::StartDownloads() /* For now, error it */ int MOD_RESULT = 0; - FOREACH_RESULT(I_OnDownloadFile, OnDownloadFile(file, reinterpret_cast(x->second))); + FOREACH_RESULT(I_OnDownloadFile, OnDownloadFile(file, x->second)); if (MOD_RESULT == 0) { /* No module claimed this file */ diff --git a/src/modules.cpp b/src/modules.cpp index 373f1c7b8..6fecc1f50 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -107,7 +107,7 @@ std::string Event::GetEventID() Module::Module(InspIRCd* Me) : ServerInstance(Me) { } Module::~Module() { } void Module::OnReadConfig(ServerConfig*, ConfigReader*) { } -int Module::OnDownloadFile(const std::string&, std::istringstream*&) { return 0; } +int Module::OnDownloadFile(const std::string&, std::istream*&) { return 0; } void Module::OnUserConnect(User*) { } void Module::OnUserQuit(User*, const std::string&, const std::string&) { } void Module::OnUserDisconnect(User*) { } -- cgit v1.2.3