X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=textclient%2Fscreen.c;h=70f2b1f65b02384c91f1d27694ca84ab01d31946;hb=HEAD;hp=3e0be4d989fca84ce4e056c5d77537205c780d49;hpb=0baa56636a742d04298646099681d1dfa838d668;p=citadel.git diff --git a/textclient/screen.c b/textclient/screen.c index 3e0be4d98..30cf3d9bb 100644 --- a/textclient/screen.c +++ b/textclient/screen.c @@ -2,13 +2,7 @@ // // 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. +// This program is open source software. Use, duplication, or disclosure is subject to the GNU General Public License version 3. #include "textclient.h" @@ -230,16 +224,16 @@ void scr_wait_indicator(int state) { if (screenwidth > 0) { switch (state) { default: - case 0: /* Idle */ + case 0: // Idle status_line[sp] = ' '; break; - case 1: /* Waiting */ + case 1: // Waiting status_line[sp] = 'X'; break; - case 2: /* Receiving */ + case 2: // Receiving status_line[sp] = '<'; break; - case 3: /* Sending */ + case 3: // Sending status_line[sp] = '>'; break; }