Updated the boilerplate on each file
authorArt Cancro <ajc@citadel.org>
Tue, 27 Apr 2021 20:44:48 +0000 (16:44 -0400)
committerArt Cancro <ajc@citadel.org>
Tue, 27 Apr 2021 20:44:48 +0000 (16:44 -0400)
16 files changed:
textclient/Makefile
textclient/README.txt
textclient/citadel.c
textclient/citadel_ipc.c
textclient/client_chat.c
textclient/client_passwords.c
textclient/commands.c
textclient/configure
textclient/ipc_c_tcp.c
textclient/messages.c
textclient/rooms.c
textclient/routines.c
textclient/routines2.c
textclient/screen.c
textclient/textclient.h
textclient/tuiconfig.c

index 0750f964f5ede7da64a95f0fa10d14b0a4bf44c4..c42fe60635406b5c39e6282873ca6f3b2a3d9998 100644 (file)
@@ -1,12 +1,14 @@
 # MAKEFILE FOR CITADEL TEXT CLIENT
 # This file is part of "conf-IG-ure"
 # Copyright (C) 2016-2018 by Art Cancro
 # MAKEFILE FOR CITADEL TEXT CLIENT
 # This file is part of "conf-IG-ure"
 # Copyright (C) 2016-2018 by Art Cancro
-# Distributed under the terms of the GNU General Public License v3 with the following special exceptions:
-# 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 should shut up about everything
-# 5. By reading these special exceptions you have already agreed to them.
+#
+# This program is open source software.  Use, duplication, and/or
+# disclosure are subject to the GNU General Purpose License version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 
 # config.mk is generated by ./configure
 include config.mk
 
 # config.mk is generated by ./configure
 include config.mk
index 6218f644d6989551c3934eacb34b9f2079535c1d..22f72e18bfc6bb44f86a8b60787c3c270a9799ec 100644 (file)
@@ -2,9 +2,13 @@
 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.
 
 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-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
-favorite operating system is called "Linux" and NOT "GNU/Linux".
+All code is Copyright (c) 1987-2021 by the citadel.org team.
+
+This program is open source software.  Use, duplication, and/or
+disclosure are subject to the GNU General Purpose License version 3.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
 
 
index 1fea75eb38842077722782d3919324e985b600e6..e5017fd9540f6f2c94fb9b15187bfe5c8b24b567 100644 (file)
@@ -1,16 +1,14 @@
-/*
- * Main source module for the client program.
- *
- * Copyright (c) 1987-2019 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// Main source module for the client program.
+//
+// Copyright (c) 1987-2019 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index f9ebf8a8ff3c8721723e3fc5d13e43746bbc86b1..123258f7681303685963de79ed357c2df0771304 100644 (file)
@@ -1,14 +1,12 @@
-/*
- * Copyright (c) 1987-2020 by the citadel.org team
- *
- *  This program is open source software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License version 3.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- */
+// Copyright (c) 1987-2020 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index b8f621bd7e8a0865bc1e94ae658f4c49ff9ebe8f..5b0da95f4024022f798e63f3b37b7a56b4a4ef08 100644 (file)
@@ -1,16 +1,14 @@
-/*
- * front end for multiuser chat
- *
- * Copyright (c) 1987-2016 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// front end for multiuser chat
+//
+// Copyright (c) 1987-2016 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index 522ec882564c674f0de8f0b18bbd74eac4e3b0d6..6187a7cd3c4ddd3ef3aa5bf6ae75610d24bff1ac 100644 (file)
@@ -1,17 +1,15 @@
-/*
- * Functions which allow the client to remember usernames and passwords for
- * various sites.
- *
- * Copyright (c) 1987-2016 by the citadel.org team
- *
- *  This program is open source software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License version 3.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- */
+// Functions which allow the client to remember usernames and passwords for
+// various sites.
+//
+// Copyright (c) 1987-2016 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index 4187ddd515d27902a63efaf197e6006916a06d2b..864cee44d6ba0f82ef6d8ae6a4845b9d69fdd22d 100644 (file)
@@ -1,17 +1,15 @@
-/*
- * This file contains functions which implement parts of the
- * text-mode user interface.
- *
- * Copyright (c) 1987-2018 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// This file contains functions which implement parts of the
+// text-mode user interface.
+//
+// Copyright (c) 1987-2018 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index 04821c612471752fca075d37dafae2c69b558679..f49e7527f21a726ba509bf56a7d1097264ab9ee0 100755 (executable)
@@ -3,12 +3,14 @@
 # CONFIGURE SCRIPT FOR CITADEL TEXT CLIENT
 # This file is part of "conf-IG-ure"
 # Copyright (C) 2016-2019 by Art Cancro
 # CONFIGURE SCRIPT FOR CITADEL TEXT CLIENT
 # This file is part of "conf-IG-ure"
 # Copyright (C) 2016-2019 by Art Cancro
-# Distributed under the terms of the GNU General Public License v3 with the following special exceptions:
-# 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.
-# 5. By reading these special exceptions you have already agreed to them.
+#
+# This program is open source software.  Use, duplication, and/or
+# disclosure are subject to the GNU General Purpose License version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 
 echo 
 echo 
 
 echo 
 echo 
index 4e4b8b87257c7a51050524b89bda2e1fea069721..efb997dcc31265ca7faecfc63b7e773491e81c7a 100644 (file)
@@ -1,16 +1,14 @@
-/*
- * Client-side IPC functions
- *
- * Copyright (c) 1987-2018 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// Client-side IPC functions
+//
+// Copyright (c) 1987-2018 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 
 #include "textclient.h"
 
 
 #include "textclient.h"
index df99e3362a092d93de27102c41fe4dba50d7cd91..31ca9011f6d6a6b39310df58402286eaf1eb33fc 100644 (file)
@@ -1,16 +1,14 @@
-/*
- * Text client functions for reading and writing of messages
- *
- * Copyright (c) 1987-2020 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// Text client functions for reading and writing of messages
+//
+// Copyright (c) 1987-2020 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index 4eeb91e46c0b885d4b0259f190324d05751bbd83..5c65cea82f83405c33ecf07b76e4c1d9f2ff184c 100644 (file)
@@ -1,16 +1,14 @@
-/*
- * Client-side functions which perform room operations
- *
- * Copyright (c) 1987-2018 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// Client-side functions which perform room operations
+//
+// Copyright (c) 1987-2018 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index 3daaa3da86f06f1ca03565c25103278fec5e2238..b488dc9d1659a1865863b938e169d35ec768fdd6 100644 (file)
@@ -1,16 +1,14 @@
-/*
- * Client-side support functions.
- *
- * Copyright (c) 1987-2016 by the citadel.org team
- *
- *  This program is open source software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License version 3.
- *
- *  This program is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *  GNU General Public License for more details.
- */
+// Client-side support functions.
+//
+// Copyright (c) 1987-2016 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index a5225b027aa185da52dd221e1fc45b688b2f2b3e..5105ee08238492f3f214ae5c763afa6509111dd5 100644 (file)
@@ -1,16 +1,14 @@
-/*
- * More client-side support functions.
- *
- * Copyright (c) 1987-2017 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// More client-side support functions.
+//
+// Copyright (c) 1987-2017 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
index 70f2b1f65b02384c91f1d27694ca84ab01d31946..eac342f4b0352cc25b42f6500959dbf4918fde80 100644 (file)
@@ -1,20 +1,17 @@
-/*
- * Screen output handling
- *
- * Copyright (c) 1987-2018 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// Screen output handling
+//
+// Copyright (c) 1987-2021 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"
 
-
 int enable_status_line = 0;
 char status_line[1024] = "     ";
 
 int enable_status_line = 0;
 char status_line[1024] = "     ";
 
@@ -34,8 +31,7 @@ void do_keepalive(void);
  * Attempt to discover the screen dimensions. 
  * WARNING: This is sometimes called from a signal handler.
  */
  * Attempt to discover the screen dimensions. 
  * WARNING: This is sometimes called from a signal handler.
  */
-void check_screen_dims(void)
-{
+void check_screen_dims(void) {
 #ifdef TIOCGWINSZ
        struct {
                unsigned short height;  /* rows */
 #ifdef TIOCGWINSZ
        struct {
                unsigned short height;  /* rows */
@@ -57,8 +53,7 @@ void check_screen_dims(void)
 /*
  * Initialize the screen
  */
 /*
  * Initialize the screen
  */
-void screen_new(void)
-{
+void screen_new(void) {
        send_ansi_detect();
        look_for_ansi();
        cls(0);
        send_ansi_detect();
        look_for_ansi();
        cls(0);
@@ -66,23 +61,18 @@ void screen_new(void)
 }
 
 
 }
 
 
-
 /*
  * Beep.
  */
 /*
  * Beep.
  */
-void ctdl_beep(void)
-{
+void ctdl_beep(void) {
        putc(7, stdout);
 }
 
 
        putc(7, stdout);
 }
 
 
-
-
 /*
  * scr_printf() outputs to the terminal
  */
 /*
  * scr_printf() outputs to the terminal
  */
-int scr_printf(char *fmt, ...)
-{
+int scr_printf(char *fmt, ...) {
        static char outbuf[4096];       /* static for performance -- not re-entrant -- change if needed */
        va_list ap;
        int retval;
        static char outbuf[4096];       /* static for performance -- not re-entrant -- change if needed */
        va_list ap;
        int retval;
@@ -103,8 +93,7 @@ int scr_printf(char *fmt, ...)
 /*
  * Read one character from the terminal
  */
 /*
  * Read one character from the terminal
  */
-int scr_getc(int delay)
-{
+int scr_getc(int delay) {
        unsigned char buf;
 
        scr_flush();
        unsigned char buf;
 
        scr_flush();
@@ -117,11 +106,11 @@ int scr_getc(int delay)
        return buf;
 }
 
        return buf;
 }
 
+
 /*
  * Issue the paginator prompt (more / hit any key to continue)
  */
 /*
  * Issue the paginator prompt (more / hit any key to continue)
  */
-void hit_any_key(void)
-{
+void hit_any_key(void) {
        int a, b;
 
        color(COLOR_PUSH);
        int a, b;
 
        color(COLOR_PUSH);
@@ -153,8 +142,7 @@ void hit_any_key(void)
 /*
  * Output one character to the terminal
  */
 /*
  * Output one character to the terminal
  */
-int scr_putc(int c)
-{
+int scr_putc(int c) {
        /* handle tabs normally */
        if (c == '\t') {
                do {
        /* handle tabs normally */
        if (c == '\t') {
                do {
@@ -171,9 +159,11 @@ int scr_putc(int c)
        if (c == '\n') {
                ++lines_printed;
                cols_printed = 0;
        if (c == '\n') {
                ++lines_printed;
                cols_printed = 0;
-       } else if (c == '\r') {
+       }
+       else if (c == '\r') {
                cols_printed = 0;
                cols_printed = 0;
-       } else if (isprint(c)) {
+       }
+       else if (isprint(c)) {
                ++cols_printed;
                if ((screenwidth > 0) && (cols_printed > screenwidth)) {
                        ++lines_printed;
                ++cols_printed;
                if ((screenwidth > 0) && (cols_printed > screenwidth)) {
                        ++lines_printed;
@@ -197,8 +187,8 @@ int scr_putc(int c)
        return c;
 }
 
        return c;
 }
 
-void scr_flush(void)
-{
+
+void scr_flush(void) {
        if ((enable_color) && (screenwidth > 0) && (enable_status_line)) {
                if (strlen(status_line) < screenwidth) {
                        memset(&status_line[strlen(status_line)], 32, screenwidth - strlen(status_line));
        if ((enable_color) && (screenwidth > 0) && (enable_status_line)) {
                if (strlen(status_line) < screenwidth) {
                        memset(&status_line[strlen(status_line)], 32, screenwidth - strlen(status_line));
@@ -218,8 +208,7 @@ static volatile int caught_sigwinch = 0;
  * scr_winch() handles window size changes from SIGWINCH
  * resizes all our windows for us
  */
  * scr_winch() handles window size changes from SIGWINCH
  * resizes all our windows for us
  */
-sighandler_t scr_winch(int signum)
-{
+sighandler_t scr_winch(int signum) {
        /* if we receive this signal, we must be running
         * in a terminal that supports resizing.
         */
        /* if we receive this signal, we must be running
         * in a terminal that supports resizing.
         */
@@ -229,12 +218,10 @@ sighandler_t scr_winch(int signum)
 }
 
 
 }
 
 
-
 /*
  * Display a 3270-style "wait" indicator at the bottom of the screen
  */
 /*
  * Display a 3270-style "wait" indicator at the bottom of the screen
  */
-void scr_wait_indicator(int state)
-{
+void scr_wait_indicator(int state) {
        int sp = (screenwidth - 2);
 
        if (!enable_status_line)
        int sp = (screenwidth - 2);
 
        if (!enable_status_line)
index be52529fb869842ca731d9fbe7ad275495e9cd47..2a370364861268a9e86f7f62fc10828f3eb93361 100644 (file)
@@ -1,17 +1,12 @@
-/*
- * Copyright (c) 1987-2020 by the citadel.org team
- *
- * This program is open source software.  It runs great on the Linux
- * operating system, and probably other places too.  We acknowledge
- * that Richard Stallman is a communist and an asshole, while at the
- * same time we release this program under the terms of the General
- * Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * General Public License for more details.
- */
+// Copyright (c) 1987-2020 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #define        UDS                     "_UDS_"
 #define DEFAULT_HOST           "localhost"
 
 #define        UDS                     "_UDS_"
 #define DEFAULT_HOST           "localhost"
index 80f0c94feb06a93b0c2040f74e368790f79d3400..6372daf87534c08fab8b768800491c33d2030692 100644 (file)
@@ -1,16 +1,14 @@
-/*
- * Configuration screens that are part of the text mode client.
- *
- * Copyright (c) 1987-2018 by the citadel.org team
- *
- * This program is open source software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- */
+// Configuration screens that are part of the text mode client.
+//
+// Copyright (c) 1987-2018 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, and/or
+// disclosure are subject to the GNU General Purpose License version 3.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
 
 #include "textclient.h"
 
 
 #include "textclient.h"