From b3ad27e8991fdbd64fd4db58c0c89538b5f02959 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sun, 15 Nov 2015 17:56:28 -0700 Subject: * 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. --- imap/src/osdep/nt/env_nt.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'imap/src/osdep') 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 * * 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; -- cgit v1.2.3-54-g00ecf