diff src/util.c @ 7459:825351e3b01b

[gaim-migrate @ 8072] SimGuy says this will fix %t in away messages and profiles on win32. I believe him, because really, I have nothing better to do. Well, except status rewrite, and a half dozen other things. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 08 Nov 2003 05:38:21 +0000
parents 783eea64614c
children 3c21f3084ff0
line wrap: on
line diff
--- a/src/util.c	Sat Nov 08 05:18:17 2003 +0000
+++ b/src/util.c	Sat Nov 08 05:38:21 2003 +0000
@@ -1379,7 +1379,7 @@
 					break;
 				case 't':
 					/* append time */
-					strftime(tmp, 20, "%r", tme);
+					strftime(tmp, 20, "%I:%M:%S %p", tme);
 					strcpy(cpy + cnt, tmp);
 					cnt += strlen(tmp);
 					c++;