From 05670eb4a92765ec954f81e775419cff7efcd87c Mon Sep 17 00:00:00 2001 From: w00t Date: Mon, 23 Jul 2007 21:56:34 +0000 Subject: Fix some comments to be multiline, and remove a redundant if() case caused by windows patch a while back git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7528 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/dynamic.cpp | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/dynamic.cpp b/src/dynamic.cpp index 179113cae..01daaee86 100644 --- a/src/dynamic.cpp +++ b/src/dynamic.cpp @@ -38,7 +38,7 @@ DLLManager::DLLManager(InspIRCd* ServerInstance, const char *fname) DLLManager::~DLLManager() { - // close the library if it isn't null + /* close the library */ if (h) dlclose(h); } @@ -47,8 +47,10 @@ DLLManager::~DLLManager() bool DLLManager::GetSymbol(void** v, const char* sym_name) { - // try extract a symbol from the library - // get any error message is there is any + /* + * try extract a symbol from the library + * get any error message is there is any + */ if (h) { @@ -59,19 +61,13 @@ bool DLLManager::GetSymbol(void** v, const char* sym_name) return false; } - if (err) - { - return false; - } - else - { - return true; - } + /* succeeded :) */ + return true; } DLLFactoryBase::DLLFactoryBase(InspIRCd* Instance, const char* fname, const char* symbol) : DLLManager(Instance, fname) { - // try get the factory function if there is no error yet + /* try get the factory function if there is no error yet */ factory_func = 0; if (!LastError()) -- cgit v1.2.3