summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-05 18:04:52 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-05 18:04:52 +0000
commit56b89baf233a7ef85e33b297437ba61e627e423c (patch)
tree54dd3bf0d01c129f3c2af57207318f8b70a99629
parent34d034942c0a9ca043e5849fc439260485effc07 (diff)
Fix spelling mistakes on some log messages
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7666 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--include/modules.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/modules.h b/include/modules.h
index 389fa6184..e38acd5b4 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -129,7 +129,7 @@ typedef std::map<std::string, std::pair<int, modulelist> > interfacelist;
} \
catch (CoreException& modexcept) \
{ \
- ServerInstance->Log(DEFAULT,"Exception cought: %s",modexcept.GetReason()); \
+ ServerInstance->Log(DEFAULT,"Exception caught: %s",modexcept.GetReason()); \
} \
} \
}
@@ -149,7 +149,7 @@ typedef std::map<std::string, std::pair<int, modulelist> > interfacelist;
} \
catch (CoreException& modexcept) \
{ \
- z->Log(DEFAULT,"Exception cought: %s",modexcept.GetReason()); \
+ z->Log(DEFAULT,"Exception caught: %s",modexcept.GetReason()); \
} \
} \
}
@@ -172,7 +172,7 @@ typedef std::map<std::string, std::pair<int, modulelist> > interfacelist;
} \
catch (CoreException& modexcept) \
{ \
- ServerInstance->Log(DEFAULT,"Exception cought: %s",modexcept.GetReason()); \
+ ServerInstance->Log(DEFAULT,"Exception caught: %s",modexcept.GetReason()); \
} \
} \
} \
@@ -198,7 +198,7 @@ typedef std::map<std::string, std::pair<int, modulelist> > interfacelist;
} \
catch (CoreException& modexcept) \
{ \
- z->Log(DEBUG,"Exception cought: %s",modexcept.GetReason()); \
+ z->Log(DEBUG,"Exception caught: %s",modexcept.GetReason()); \
} \
} \
} \