+2007-08-13 [paul] 2.10.0cvs117
+
+ * src/common/utils.c
+ fix bug 1287, 'Compile time problem on Solaris
+ (nexenta gnu/Solaris) utils.c'
+ Thanks to Piotr Chrzczonowicz
+
2007-08-12 [wwp] 2.10.0cvs116
* src/plugins/pgpcore/prefs_gpg.c
( cvs diff -u -r 1.52.2.47 -r 1.52.2.48 src/prefs_folder_item.c; cvs diff -u -r 1.1.2.10 -r 1.1.2.11 src/gtk/combobox.c; ) > 2.10.0cvs114.patchset
( cvs diff -u -r 1.10.2.14 -r 1.10.2.15 src/privacy.h; ) > 2.10.0cvs115.patchset
( cvs diff -u -r 1.1.2.25 -r 1.1.2.26 src/plugins/pgpcore/prefs_gpg.c; ) > 2.10.0cvs116.patchset
+( cvs diff -u -r 1.36.2.107 -r 1.36.2.108 src/common/utils.c; ) > 2.10.0cvs117.patchset
t = time(NULL);
lt = localtime_r(&t, &buf1);
+#ifdef SOLARIS
+ sscanf(asctime_r(lt, buf2, sizeof(buf2)), "%3s %3s %d %d:%d:%d %d\n",
+ day, mon, &dd, &hh, &mm, &ss, &yyyy);
+#else
sscanf(asctime_r(lt, buf2), "%3s %3s %d %d:%d:%d %d\n",
day, mon, &dd, &hh, &mm, &ss, &yyyy);
+#endif
g_snprintf(buf, len, "%s, %d %s %d %02d:%02d:%02d %s",
day, dd, mon, yyyy, hh, mm, ss, tzoffset(&t));
}