=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rcs/ci.c,v retrieving revision 1.163 retrieving revision 1.164 diff -c -r1.163 -r1.164 *** src/usr.bin/rcs/ci.c 2006/04/26 21:55:22 1.163 --- src/usr.bin/rcs/ci.c 2006/04/29 04:59:48 1.164 *************** *** 1,4 **** ! /* $OpenBSD: ci.c,v 1.163 2006/04/26 21:55:22 joris Exp $ */ /* * Copyright (c) 2005, 2006 Niall O'Higgins * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: ci.c,v 1.164 2006/04/29 04:59:48 ray Exp $ */ /* * Copyright (c) 2005, 2006 Niall O'Higgins * All rights reserved. *************** *** 483,491 **** fmt = "%Y/%m/%d %H:%M:%S"; ! t = localtime(&pb->date); strftime(dbuf1, sizeof(dbuf1), fmt, t); ! t_head = localtime(&head_date); strftime(dbuf2, sizeof(dbuf2), fmt, t_head); errx(1, "%s: Date %s preceeds %s in revision %s.", --- 483,491 ---- fmt = "%Y/%m/%d %H:%M:%S"; ! t = gmtime(&pb->date); strftime(dbuf1, sizeof(dbuf1), fmt, t); ! t_head = gmtime(&head_date); strftime(dbuf2, sizeof(dbuf2), fmt, t_head); errx(1, "%s: Date %s preceeds %s in revision %s.",