summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-15 01:09:59 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-15 01:09:59 +0000
commit5ba06b20cc64826aaecb0d4bee943fcfabd9b86e (patch)
tree1d2c3002f56a93909a796eebb6d1150cca32fbd1 /src
parentedcb293a5b5d9dce6fb3930f67b044d03d52dfd9 (diff)
Comment one of w00tie's comments, fix typo in log message, and make it look like I ctually was active today... :>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3715 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/userprocess.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp
index 01462d47c..67cd3cca9 100644
--- a/src/userprocess.cpp
+++ b/src/userprocess.cpp
@@ -102,7 +102,7 @@ void ProcessUser(userrec* cu)
}
catch (ModuleException& modexcept)
{
- log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \
+ log(DEBUG,"Module exception caught: %s",modexcept.GetReason());
}
if (MOD_RESULT < 0)
@@ -136,6 +136,8 @@ void ProcessUser(userrec* cu)
/*
* XXX - potential replacement for the below using my beloved pointers. --w00t
+ * XXX - no garauntee there's not \0's in the middle of the data,
+ * and no reason for it to be terminated either. -- Om
*
* for (char *c = data; data && *data; data++)
* {
@@ -494,5 +496,3 @@ void LoadAllModules(InspIRCd* ServerInstance)
log(DEFAULT,"Total loaded modules: %lu",(unsigned long)MODCOUNT+1);
}
-
-