summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/status.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2007-06-28 21:38:10 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2007-06-28 21:38:10 +0000
commit407481b866fe55a776965e56142aff89bb3491a9 (patch)
treeb9c46d178fb4b8db7ff03ed4d143f190a533cd3d /usr.bin/cvs/status.c
parentd9f5a5e9b0a4c8a8195c2bee0e55b5edf05c9f10 (diff)
Sync revisions and time buffers size to be consistent with each others.
Simplifies further size tweaks if needed. OK niallo@ ray@.
Diffstat (limited to 'usr.bin/cvs/status.c')
-rw-r--r--usr.bin/cvs/status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c
index b83bd963224..29ab39f6ca5 100644
--- a/usr.bin/cvs/status.c
+++ b/usr.bin/cvs/status.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: status.c,v 1.74 2007/06/01 17:47:47 niallo Exp $ */
+/* $OpenBSD: status.c,v 1.75 2007/06/28 21:38:09 xsa Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
@@ -119,7 +119,7 @@ cvs_status_local(struct cvs_file *cf)
size_t len;
RCSNUM *head;
const char *status;
- char buf[128], timebuf[32], revbuf[32];
+ char buf[128], timebuf[CVS_TIME_BUFSZ], revbuf[CVS_REV_BUFSZ];
struct rcs_sym *sym;
cvs_log(LP_TRACE, "cvs_status_local(%s)", cf->file_path);