forgot conditional #if HAVE_LIBSSL around setting of .use_imaps in main()
from command line arguments
This commit is contained in:
parent
bfffeffff6
commit
cb2f6e3ee6
4
main.c
4
main.c
|
@ -198,11 +198,13 @@ main (int argc, char **argv)
|
||||||
global.box = optarg;
|
global.box = optarg;
|
||||||
break;
|
break;
|
||||||
case 's':
|
case 's':
|
||||||
if (!strncasecmp("imaps:", optarg, 6))
|
#if HAVE_LIBSSL
|
||||||
|
if (!strncasecmp ("imaps:", optarg, 6))
|
||||||
{
|
{
|
||||||
global.use_imaps = 1;
|
global.use_imaps = 1;
|
||||||
optarg += 6;
|
optarg += 6;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
global.host = optarg;
|
global.host = optarg;
|
||||||
break;
|
break;
|
||||||
case 'u':
|
case 'u':
|
||||||
|
|
Loading…
Reference in New Issue
Block a user