Skip to content

Commit

Permalink
Before i was rudely interrupted by a FUCKING *RAM FAILURE*, i was goi…
Browse files Browse the repository at this point in the history
…ng to commit this patch which fixes the error message given out when a module cant be loaded. Thanks darix for spotting it first. :)

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6735 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
braindigitalis committed Apr 4, 2007
1 parent 980e2f2 commit 6ed948b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inspircd.cpp
Expand Up @@ -800,7 +800,7 @@ bool InspIRCd::LoadModule(const char* filename)
}
catch (CoreException& modexcept)
{
this->Log(DEFAULT,"Unable to load %s: ",modfile,modexcept.GetReason());
this->Log(DEFAULT,"Unable to load %s: %s",modfile,modexcept.GetReason());
snprintf(MODERR,MAXBUF,"Factory function of %s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
return false;
}
Expand Down

0 comments on commit 6ed948b

Please sign in to comment.