From: Wilfried Göesgens Date: Fri, 21 Dec 2007 22:41:56 +0000 (+0000) Subject: * if none of the cases hits it, return 0K X-Git-Tag: v7.86~2647 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=477cd3ca450c7f03d958816f5e418e1934985cf2 * if none of the cases hits it, return 0K --- diff --git a/citadel/msgbase.c b/citadel/msgbase.c index a57de91ca..e038000cb 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -3141,7 +3141,7 @@ int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, else return (ERROR + NO_SUCH_USER); } - return (ERROR + NOT_LOGGED_IN); + return (0); }