1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-23 06:35:36 +00:00

fix reading of starttls = "no" in config

This commit is contained in:
Ailin Nemui 2021-08-30 19:31:56 +02:00
parent 4001871552
commit 6710b35736

View File

@ -12,8 +12,8 @@
(IRC_SERVER_SETUP(server) ? TRUE : FALSE)
enum {
STARTTLS_DISALLOW = -1, /* */
STARTTLS_NOTSET = 0,
STARTTLS_NOTSET = -1, /* */
STARTTLS_DISALLOW = 0,
STARTTLS_ENABLED = 1
};