summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mbbsd/bbs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index 45482889..1fe876ea 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -870,7 +870,7 @@ edit_post(int ent, fileheader_t * fhdr, char *direct)
return DONOTHING;
if( !HAS_PERM(PERM_SYSOP) &&
- (!(currmode & MODE_POST) || strcmp(fhdr->owner, cuser.userid)) )
+ (!(currmode & MODE_POST) || strcmp(fhdr->owner, cuser.userid) != 0) )
return DONOTHING;
if( currmode & MODE_SELECT )