From c9447a9088997d2309fd2a46fb720115337c3706 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 13 Dec 2005 23:17:22 +0000 Subject: #define IS_LOCAL(x) (x->fd > -1) #define IS_REMOTE(x) (x->fd < 0) #define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2386 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/inspircd.cpp') diff --git a/src/inspircd.cpp b/src/inspircd.cpp index f38daef65..506860999 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -587,8 +587,9 @@ chanrec* add_channel(userrec *user, const char* cn, const char* key, bool overri { MOD_RESULT = 0; FOREACH_RESULT(OnUserPreJoin(user,Ptr,cname)); - if (MOD_RESULT == 1) { - return NULL + if (MOD_RESULT == 1) + { + return NULL; } else { -- cgit v1.2.3