summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/config.h4
-rw-r--r--include/pttstruct.h5
2 files changed, 5 insertions, 4 deletions
diff --git a/include/config.h b/include/config.h
index 14b14d03..5b562c10 100644
--- a/include/config.h
+++ b/include/config.h
@@ -121,6 +121,10 @@
#define ADD_EXMAILBOX 0 /* 贈送信箱 */
#endif
+#ifndef HASH_BITS
+#define HASH_BITS 16 /* userid->uid hashing bits */
+#endif
+
/* more.c 中文章頁數上限(lines/22), +4 for safe */
#define MAX_PAGES (MAX_EDIT_LINE / 22 + 4)
diff --git a/include/pttstruct.h b/include/pttstruct.h
index 26eacc51..e0259c40 100644
--- a/include/pttstruct.h
+++ b/include/pttstruct.h
@@ -280,10 +280,6 @@ typedef struct fileheader_t {
#define STRLEN 80 /* Length of most string data */
-/* uhash is a userid->uid hash table -- jochang */
-
-#define HASH_BITS 16
-
union xitem_t {
struct { /* bbs_item */
char fdate[9]; /* [mm/dd/yy] */
@@ -466,6 +462,7 @@ typedef struct keeploc_t {
typedef struct {
int version;
/* uhash */
+ /* uhash is a userid->uid hash table -- jochang */
char userid[MAX_USERS][IDLEN + 1];
char gap_1[IDLEN+1];
int next_in_hash[MAX_USERS];