summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-02-21 00:12:13 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-02-21 00:12:13 +0800
commit418fe0cb9e9901c46407dcf18d2bc168e1c26f2e (patch)
tree62925ca908ee88ce3cdd97db85bbf7bfd38196c8
parent877afb48f0c476dd0515e8e7d1857e8787e12158 (diff)
downloadpttbbs-418fe0cb9e9901c46407dcf18d2bc168e1c26f2e.tar
pttbbs-418fe0cb9e9901c46407dcf18d2bc168e1c26f2e.tar.gz
pttbbs-418fe0cb9e9901c46407dcf18d2bc168e1c26f2e.tar.bz2
pttbbs-418fe0cb9e9901c46407dcf18d2bc168e1c26f2e.tar.lz
pttbbs-418fe0cb9e9901c46407dcf18d2bc168e1c26f2e.tar.xz
pttbbs-418fe0cb9e9901c46407dcf18d2bc168e1c26f2e.tar.zst
pttbbs-418fe0cb9e9901c46407dcf18d2bc168e1c26f2e.zip
fix last commit bug
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@669 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/board.c5
-rw-r--r--pttbbs/mbbsd/name.c5
2 files changed, 4 insertions, 6 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c
index 32d0c628..28b1bc71 100644
--- a/pttbbs/mbbsd/board.c
+++ b/pttbbs/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.81 2003/02/20 11:06:03 in2 Exp $ */
+/* $Id: board.c,v 1.82 2003/02/20 16:12:12 in2 Exp $ */
#include "bbs.h"
#define BRC_STRLEN 15 /* Length of board name */
#define BRC_MAXSIZE 24576
@@ -414,9 +414,6 @@ Ben_Perm(boardheader_t * bptr)
level = bptr->level;
brdattr = bptr->brdattr;
- if (brdattr & BRD_GROUPBOARD)
- return 0;
-
if (HAS_PERM(PERM_SYSOP))
return 1;
diff --git a/pttbbs/mbbsd/name.c b/pttbbs/mbbsd/name.c
index ef1a4c5f..b16f19ef 100644
--- a/pttbbs/mbbsd/name.c
+++ b/pttbbs/mbbsd/name.c
@@ -1,4 +1,4 @@
-/* $Id: name.c,v 1.15 2003/01/17 08:49:34 kcwu Exp $ */
+/* $Id: name.c,v 1.16 2003/02/20 16:12:13 in2 Exp $ */
#include "bbs.h"
static word_t *current = NULL;
@@ -674,7 +674,8 @@ completeboard_compar(int where, char *str, int len)
int
completeboard_permission(int where)
{
- return Ben_Perm(SHM->bsorted[0][where]);
+ return (Ben_Perm(SHM->bsorted[0][where]) &&
+ !(SHM->bsorted[0][where]->brdattr & BRD_GROUPBOARD));
}
char *