summaryrefslogtreecommitdiff
path: root/pith/conf.c
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-01-29 22:42:28 -0700
committerEduardo Chappa <chappa@washington.edu>2020-01-29 22:42:28 -0700
commitf28ae01c8a4e6deb58fd4cee528e064c9b985129 (patch)
treecab85f573f234350578df77cf4d7f2d977d8c3be /pith/conf.c
parent2495c941ce924ff6b47dc22f72f96a7223bc97a4 (diff)
downloadalpine-f28ae01c8a4e6deb58fd4cee528e064c9b985129.tar.xz
* Remove default value for system-certs-path.
Diffstat (limited to 'pith/conf.c')
-rw-r--r--pith/conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pith/conf.c b/pith/conf.c
index d7ec5dbb..3bd564bd 100644
--- a/pith/conf.c
+++ b/pith/conf.c
@@ -1733,10 +1733,10 @@ init_vars(struct pine *ps, void (*cmds_f) (struct pine *, char **))
GLO_WP_INDEXHEIGHT = cpystr("24");
GLO_WP_AGGSTATE = cpystr("1");
GLO_WP_STATE = cpystr("");
-#if !defined(_WINDOWS) || (defined(ENABLE_WINDOWS_LIBRESSL) && defined(W32BITSBUILD))
+#ifdef DEFAULT_SSLCAPATH
GLO_SSLCAPATH = parse_list(DEFAULT_SSLCAPATH, 1,
PL_REMSURRQUOT, NULL);
-#endif
+#endif /* DEFAULT_SSLCAPATH */
#ifdef DF_VAR_SPELLER
GLO_SPELLER = cpystr(DF_VAR_SPELLER);
#endif