summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormark mark@31f1291d-b8d6-0310-a050-a5561fc1590b <mark mark@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-16 00:43:40 +0000
committermark mark@31f1291d-b8d6-0310-a050-a5561fc1590b <mark mark@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-16 00:43:40 +0000
commit1c70638d17d19ba01383ea9bdda540e1cd654384 (patch)
tree98b541468df6fedf61bb99be6890d435fc7048fa /src
parentb43819656399189387dda2239c12cc8cf99e2d2f (diff)
BUILD : 1.7.22 (1444) BUGS : NOTES : Fixed a typo in modules.c introduced in the last commit
git-svn-id: svn://svn.anope.org/anope/trunk@1444 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1158 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/modules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.c b/src/modules.c
index 8a3d3a6f9..99974d2ef 100644
--- a/src/modules.c
+++ b/src/modules.c
@@ -617,7 +617,7 @@ int loadModule(Module * m, User * u)
m->filename = sstrdup(buf);
ano_modclearerr();
m->handle = ano_modopen(m->filename);
- if ( m=>handle == NULL && (err = ano_moderr()) != NULL) {
+ if ( m->handle == NULL && (err = ano_moderr()) != NULL) {
alog(err);
return MOD_ERR_NOLOAD;
}