summaryrefslogtreecommitdiffstats
path: root/mbbsd/cal.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/cal.c')
-rw-r--r--mbbsd/cal.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/mbbsd/cal.c b/mbbsd/cal.c
index 100786b6..e21ce80f 100644
--- a/mbbsd/cal.c
+++ b/mbbsd/cal.c
@@ -440,6 +440,9 @@ p_sysinfo(void)
char *cpuloadstr;
int load;
extern char *compile_time;
+#ifdef DETECT_CLIENT
+ extern Fnv32_t client_code;
+#endif
load = cpuload(NULL);
cpuloadstr = (load < 5 ? "良好" : (load < 20 ? "尚可" : "過重"));
@@ -450,6 +453,9 @@ p_sysinfo(void)
prints("您現在位於 " TITLE_COLOR BBSNAME ANSI_RESET " (" MYIP ")\n"
"系統負載情況: %s\n"
"線上服務人數: %d/%d\n"
+#ifdef DETECT_CLIENT
+ "client code: %8.8X\n"
+#endif
"編譯時間: %s\n"
"起始時間: %s\n",
cpuloadstr, SHM->UTMPnumber,
@@ -458,6 +464,9 @@ p_sysinfo(void)
#else
MAX_ACTIVE,
#endif
+#ifdef DETECT_CLIENT
+ client_code,
+#endif
compile_time, ctime4(&start_time));
if (HasUserPerm(PERM_SYSOP)) {
struct rusage ru;