From 6ee6b5fc488f5286ea81ef95503c91c43c434ced Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sat, 24 Apr 2021 23:56:15 -0400 Subject: [PATCH] Fixed .Help SUMMARY --- citadel/threads.c | 13 +------------ textclient/Makefile | 2 +- textclient/README.txt | 2 +- textclient/commands.c | 3 ++- 4 files changed, 5 insertions(+), 15 deletions(-) diff --git a/citadel/threads.c b/citadel/threads.c index aec41a7c4..d995c3982 100644 --- a/citadel/threads.c +++ b/citadel/threads.c @@ -144,8 +144,7 @@ void InitializeMasterTSD(void) { /* * Initialize the thread system */ -void go_threading(void) -{ +void go_threading(void) { pthread_mutex_init(&ThreadCountMutex, NULL); /* Second call to module init functions now that threading is up */ @@ -172,14 +171,4 @@ void go_threading(void) /* We used to wait for all threads to exit. Fuck that. The only thing important is that the databases are * cleanly unmounted. After that, exit the whole program. */ -#if 0 - int countdown = 30; - while ( (num_workers > 0) && (countdown-- > 0)) { - syslog(LOG_DEBUG, "Waiting %d seconds for %d worker threads to exit", - countdown, num_workers - ); - usleep(1000000); - } -#endif - } diff --git a/textclient/Makefile b/textclient/Makefile index 3fdd066e5..0750f964f 100644 --- a/textclient/Makefile +++ b/textclient/Makefile @@ -5,7 +5,7 @@ # 1. By using this software you agree that it's called "Linux", not "GNU/Linux" # 2. By using this software you agree that it's called "open source", not "free software" # 3. By using this software you agree that GNU Autotools are crap, which is why conf-IG-ure exists -# 4. By using this software you agree that Richard Stallman is a communist. +# 4. By using this software you agree that Richard Stallman should shut up about everything # 5. By reading these special exceptions you have already agreed to them. # config.mk is generated by ./configure diff --git a/textclient/README.txt b/textclient/README.txt index a48cf464b..6218f644d 100644 --- a/textclient/README.txt +++ b/textclient/README.txt @@ -2,7 +2,7 @@ This is a text mode user interface for the Citadel system. It presents a Citadel site to users in the form of a traditional BBS. -All code is Copyright (c) 1987-2019 by the citadel.org team, and is released +All code is Copyright (c) 1987-2021 by the citadel.org team, and is released under the terms of the GNU General Public License v3. As a special exception, the Citadel team requires all users of this code to agree that our favorite software model is called "open source" and NOT "free software", and that our diff --git a/textclient/commands.c b/textclient/commands.c index 07af8770b..4187ddd51 100644 --- a/textclient/commands.c +++ b/textclient/commands.c @@ -22,7 +22,8 @@ char *helpnames[] = { "intro", "mail", "network", - "software" + "software", + "summary" }; char *helptexts[] = { -- 2.30.2