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

Merge pull request #19 from ailin-nemui/starttls-no

fix reading of starttls = "no" in config
This commit is contained in:
ailin-nemui 2021-08-31 15:17:03 +02:00 committed by GitHub
commit 3324c5da89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
};