diff options
author | Eduardo Chappa <chappa@washington.edu> | 2020-08-06 22:57:34 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2020-08-06 22:57:34 -0600 |
commit | ff2e56dffa4a6d16bc7bcc540bb578877753a81a (patch) | |
tree | a4b12497f2db4b3b1311026d95d22cabc9d9bf7c /imap/src/osdep/nt/env_nt.c | |
parent | 473a60427d58adf39c4d209245e11e5cca98ab22 (diff) | |
download | alpine-ff2e56dffa4a6d16bc7bcc540bb578877753a81a.tar.xz |
* Clear a compilation issue in PC-Alpine.
Diffstat (limited to 'imap/src/osdep/nt/env_nt.c')
-rw-r--r-- | imap/src/osdep/nt/env_nt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imap/src/osdep/nt/env_nt.c b/imap/src/osdep/nt/env_nt.c index 52211ea2..9db8a653 100644 --- a/imap/src/osdep/nt/env_nt.c +++ b/imap/src/osdep/nt/env_nt.c @@ -152,7 +152,7 @@ void *env_parameters (long function,void *value) case GET_SSLAPPCAPATH: ret = (void *) sslAppCApath; break; - case SET_SSLCAFILE: /* this can be set null */ + case SET_SSLAPPCAFILE: /* this can be set null */ if (sslAppCAfile) fs_give ((void **) &sslAppCAfile); sslAppCAfile = value ? cpystr ((char *) value) : value; break; |