diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-23 21:56:34 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-23 21:56:34 +0000 |
commit | 05670eb4a92765ec954f81e775419cff7efcd87c (patch) | |
tree | 190cfbd1e50c4e7645536b8c5876150a99475c14 | |
parent | fcfb142828942033a923730ea7a1b5bfa9ef7f78 (diff) |
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
-rw-r--r-- | src/dynamic.cpp | 20 |
1 files changed, 8 insertions, 12 deletions
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()) |