isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit cb2f6e3ee624d7616c37b90efc4f5f5fa0f95da3
parent bfffeffff6e211feb695a917df92668c3577f608
Author: Michael Elkins <me@mutt.org>
Date:   Wed,  3 Oct 2001 06:18:45 +0000

forgot conditional #if HAVE_LIBSSL around setting of .use_imaps in main()
from command line arguments

Diffstat:
Mmain.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/main.c b/main.c @@ -198,11 +198,13 @@ main (int argc, char **argv) global.box = optarg; break; case 's': - if (!strncasecmp("imaps:", optarg, 6)) +#if HAVE_LIBSSL + if (!strncasecmp ("imaps:", optarg, 6)) { global.use_imaps = 1; optarg += 6; } +#endif global.host = optarg; break; case 'u':