changeset 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 7c320cdc0f3a
children 3973a09525b3
files src/util.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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++;