summaryrefslogtreecommitdiff
path: root/imap/src/osdep/nt
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2015-11-15 17:56:28 -0700
committerEduardo Chappa <chappa@washington.edu>2015-11-15 17:56:28 -0700
commitb3ad27e8991fdbd64fd4db58c0c89538b5f02959 (patch)
treedb96448acc54c9893d17970c4dfffbcc95279eec /imap/src/osdep/nt
parentabf5b4cfbff3150ad3340679b80dc1ff5adf6298 (diff)
downloadalpine-b3ad27e8991fdbd64fd4db58c0c89538b5f02959.tar.xz
* PC-Alpine: New configuration option "Aspell Dictionaries" allows a
user to choose the dictionary used to spell, in case the user communicates in more than one language. Examples of values for the variable are "en_US" or "de_DE", etc. Only the first 10 dictionaries are offered.
Diffstat (limited to 'imap/src/osdep/nt')
-rw-r--r--imap/src/osdep/nt/env_nt.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/imap/src/osdep/nt/env_nt.c b/imap/src/osdep/nt/env_nt.c
index 6f961a95..d28d30a3 100644
--- a/imap/src/osdep/nt/env_nt.c
+++ b/imap/src/osdep/nt/env_nt.c
@@ -9,7 +9,8 @@
* Author: Mark Crispin
*
* Date: 1 August 1988
- * Last Edited: 3 April 2010
+ * Last Edited: November 10, 2015.
+ * Eduardo Chappa <chappa@gmx.com>
*
* Previous versions of this file were:
*
@@ -164,8 +165,8 @@ static void do_date (char *date,char *prefix,char *fmt,int suffix)
t->tm_hour,t->tm_min,t->tm_sec,zone/60,abs (zone) % 60);
if (suffix) { /* append timezone suffix if desired */
char *tz;
- tzset (); /* get timezone from TZ environment stuff */
- tz = tzname[daylight ? (((struct tm *) t)->tm_isdst > 0) : 0];
+ _tzset (); /* get timezone from TZ environment stuff */
+ tz = _tzname[_daylight ? (((struct tm *) t)->tm_isdst > 0) : 0];
if (tz && tz[0]) {
char *s;
for (s = tz; *s; s++) if (*s & 0x80) return;