summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/cleanshm.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/util/cleanshm.c b/util/cleanshm.c
new file mode 100644
index 00000000..37eb4018
--- /dev/null
+++ b/util/cleanshm.c
@@ -0,0 +1,25 @@
+/* $Id: toplazyBM.c 1096 2003-08-15 06:13:29Z victor $ */
+#define _UTIL_C_
+#include "bbs.h"
+
+extern userec_t xuser;
+
+/* 當資料欄位有異動 例如用了舊的欄位 可用這個程式清除舊值 */
+int clean_unused_var(userec_t *rec)
+{
+ rec->goodpost = 0;
+ rec->badpost = 0;
+ rec->goodsale = 0;
+ rec->badsale = 0;
+ memset(pad, 0, sizeof(pad));
+}
+
+int main(int argc, char *argv[])
+{
+ attach_SHM();
+ if(passwd_init())
+ exit(1);
+ if (passwd_apply(clean_unused_var) == 0)
+ printf("ERROR\n");
+ return 0;
+}