diff options
author | June McEnroe <june@causal.agency> | 2022-02-12 13:26:38 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-12 13:26:38 -0500 |
commit | 397b4ce6bd9064aa36f8b9c264e4bbc226822d6f (patch) | |
tree | a8f45e286765c4bab90cf561cd7762ebed5114e7 /chat.h | |
parent | Treat any amount of space and punctuation as word boundaries (diff) | |
download | catgirl-397b4ce6bd9064aa36f8b9c264e4bbc226822d6f.tar.gz catgirl-397b4ce6bd9064aa36f8b9c264e4bbc226822d6f.zip |
Prompt for empty server or SASL passwords
Diffstat (limited to 'chat.h')
-rw-r--r-- | chat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chat.h b/chat.h index 19d2b18..753d1a3 100644 --- a/chat.h +++ b/chat.h @@ -193,7 +193,8 @@ extern struct Self { bool restricted; size_t pos; enum Cap caps; - char *plain; + char *plainUser; + char *plainPass; char *mode; char *join; char *nick; |