From 4b85795a7dcfdd30466e327ae465f4c6a1fd7528 Mon Sep 17 00:00:00 2001
From: in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>
Date: Tue, 8 Apr 2003 09:53:21 +0000
Subject: when GV2.e.noonlineuser, do NOT search if the author is online in
 article list

git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@780 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
---
 pttbbs/include/pttstruct.h | 7 ++++---
 pttbbs/mbbsd/bbs.c         | 3 ++-
 pttbbs/util/shmctl.c       | 5 +++--
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/pttbbs/include/pttstruct.h b/pttbbs/include/pttstruct.h
index 2e3e5492..0d60a7a5 100644
--- a/pttbbs/include/pttstruct.h
+++ b/pttbbs/include/pttstruct.h
@@ -1,4 +1,4 @@
-/* $Id: pttstruct.h,v 1.33 2003/04/07 08:08:47 in2 Exp $ */
+/* $Id: pttstruct.h,v 1.34 2003/04/08 09:53:21 in2 Exp $ */
 #ifndef INCLUDE_STRUCT_H
 #define INCLUDE_STRUCT_H
 
@@ -353,8 +353,9 @@ typedef struct {
     union {
 	int     v[192];
 	struct {
-	    int     dymaxactive;
-	    int     toomanyusers;
+	    int     dymaxactive;  /* �ʺA�]�w�̤j�H�ƤW��     */
+	    int     toomanyusers; /* �W�L�H�ƤW�������i���Ӽ� */
+	    int     noonlineuser; /* ���W�ϥΪ̤����G�����   */
 	} e;
     } GV2;
     char    gap3_2[128];
diff --git a/pttbbs/mbbsd/bbs.c b/pttbbs/mbbsd/bbs.c
index 65c5408a..2651e328 100644
--- a/pttbbs/mbbsd/bbs.c
+++ b/pttbbs/mbbsd/bbs.c
@@ -1,4 +1,4 @@
-/* $Id: bbs.c,v 1.83 2003/03/20 15:10:49 victor Exp $ */
+/* $Id: bbs.c,v 1.84 2003/04/08 09:53:21 in2 Exp $ */
 #include "bbs.h"
 
 static void
@@ -165,6 +165,7 @@ readdoent(int num, fileheader_t * ent)
     if (!strncmp(title, "[���i]", 6))
 	special = 1;
     if (!strchr(ent->owner, '.') && (uid = searchuser(ent->owner)) &&
+	!SHM->GV2.e.noonlineuser &&
 	(uentp = search_ulist(uid)) && isvisible(currutmp, uentp))
 	isonline = 1;
 
diff --git a/pttbbs/util/shmctl.c b/pttbbs/util/shmctl.c
index 2232c42d..89c9069a 100644
--- a/pttbbs/util/shmctl.c
+++ b/pttbbs/util/shmctl.c
@@ -1,4 +1,4 @@
-/* $Id: shmctl.c,v 1.37 2003/04/07 08:08:47 in2 Exp $ */
+/* $Id: shmctl.c,v 1.38 2003/04/08 09:53:21 in2 Exp $ */
 #include "bbs.h"
 #include <sys/wait.h>
 
@@ -337,7 +337,8 @@ int utmpnum(int argc, char **argv)
     return 0;
 }
 
-char    *GV2str[] = {"dymaxactive", "toomanyusers", NULL};
+char    *GV2str[] = {"dymaxactive", "toomanyusers",
+		     "noonlineuser", NULL};
 int showglobal(int argc, char **argv)
 {
     int     i;
-- 
cgit v1.2.3