summaryrefslogtreecommitdiff
path: root/vchat-protocol.c
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2024-01-20 02:41:39 +0100
committerDirk Engling <erdgeist@erdgeist.org>2024-01-20 02:41:39 +0100
commit82f142c0acc87e55373102687aa718effcbf7cb9 (patch)
treeb8fe3524eb323ebd9cb52734baa8c17203a98ba7 /vchat-protocol.c
parentc9e63d4003a58f41367fef1f0672756cbb44ddfa (diff)
Remember lines that were printed during connect so they can be output in case of an error
Diffstat (limited to 'vchat-protocol.c')
-rw-r--r--vchat-protocol.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vchat-protocol.c b/vchat-protocol.c
index ac65639..c5021e4 100644
--- a/vchat-protocol.c
+++ b/vchat-protocol.c
@@ -235,6 +235,7 @@ static void justloggedin(char *message) {
235 loadcfg(getstroption(CF_LOGINSCRIPT), 0, handleline); 235 loadcfg(getstroption(CF_LOGINSCRIPT), 0, handleline);
236 handleline(".S"); 236 handleline(".S");
237 loggedin = 1; 237 loggedin = 1;
238 flushconnect();
238 } 239 }
239} 240}
240 241