diff options
Diffstat (limited to 'mbbsd/mail.c')
-rw-r--r-- | mbbsd/mail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c index 1fca15ee..16df6882 100644 --- a/mbbsd/mail.c +++ b/mbbsd/mail.c @@ -1291,7 +1291,7 @@ mail_cross_post(int ent, fileheader_t * fhdr, const char *direct) assert(0<=ent-1 && ent-1<MAX_BOARD); if ( !(HasUserPerm(PERM_SYSOP)) && (cuser.firstlogin > (now - (time4_t)bcache[ent - 1].post_limit_regtime * 2592000) || - cuser.badpost > ((unsigned int)(bcache[ent - 1].post_limit_badpost)) || + cuser.badpost > (255 - (unsigned int)(bcache[ent - 1].post_limit_badpost)) || cuser.numlogins < ((unsigned int)(bcache[ent - 1].post_limit_logins) * 10) || cuser.numposts < ((unsigned int)(bcache[ent - 1].post_limit_posts) * 10)) ) { move(5, 10); |