diff options
author | June McEnroe <june@causal.agency> | 2018-12-04 14:58:14 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-12-04 14:58:14 -0500 |
commit | e01b03c96383b9e15fe1a2929c4d19869121d0a1 (patch) | |
tree | 225e3aeda7c1f34c32810f60c53e522cebdcb1b0 /ui.c | |
parent | Add -a auth option for unimplemented SASL (diff) | |
download | catgirl-e01b03c96383b9e15fe1a2929c4d19869121d0a1.tar.gz catgirl-e01b03c96383b9e15fe1a2929c4d19869121d0a1.zip |
Revert half-working reconnecting stuff
Diffstat (limited to '')
-rw-r--r-- | ui.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ui.c b/ui.c index 5a26aa2..a7bec55 100644 --- a/ui.c +++ b/ui.c @@ -22,7 +22,6 @@ #include <stdarg.h> #include <stdbool.h> #include <stdlib.h> -#include <stdnoreturn.h> #include <string.h> #include <sysexits.h> #include <wchar.h> @@ -112,13 +111,12 @@ void uiInit(void) { uiShow(); } -noreturn void uiExit(void) { +void uiExit(void) { uiHide(); printf( "This program is AGPLv3 Free Software!\n" "The source is available at <" SOURCE_URL ">.\n" ); - exit(EX_OK); } static int lastLine(void) { |