From 1c70638d17d19ba01383ea9bdda540e1cd654384 Mon Sep 17 00:00:00 2001 From: "mark mark@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Tue, 16 Sep 2008 00:43:40 +0000 Subject: 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 --- src/modules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; } -- cgit