Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1fcb993

Browse files
author
micia
committed
Fix config file entry parsing
Code and both config file and man pages refer that option as SECURETRANS, not SECURETRANSFER.
1 parent d380e95 commit 1fcb993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ parse_conf(const char *config_path)
253253
config.features |= NOHELO;
254254
else if (strcmp(word, "OPPORTUNISTIC_TLS") == 0 && data == NULL)
255255
config.features |= TLS_OPP;
256-
else if (strcmp(word, "SECURETRANSFER") == 0 && data == NULL)
256+
else if (strcmp(word, "SECURETRANS") == 0 && data == NULL)
257257
config.features |= SECURETRANS;
258258
else if (strcmp(word, "DEFER") == 0 && data == NULL)
259259
config.features |= DEFER;

0 commit comments

Comments
 (0)