diff options
author | 2007-06-28 21:38:09 +0000 | |
---|---|---|
committer | 2007-06-28 21:38:09 +0000 | |
commit | 0a7da307a320cc44e09a0576ba47e9cd8db3c9a4 (patch) | |
tree | 5a6c370983856da384df38e16c2982ca05bd26e3 /usr.bin/cvs/diff.c | |
parent | When commiting to a server in a remote setup classify (diff) | |
download | wireguard-openbsd-0a7da307a320cc44e09a0576ba47e9cd8db3c9a4.tar.xz wireguard-openbsd-0a7da307a320cc44e09a0576ba47e9cd8db3c9a4.zip |
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/diff.c')
-rw-r--r-- | usr.bin/cvs/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c index 9e35fd29f69..d3650048297 100644 --- a/usr.bin/cvs/diff.c +++ b/usr.bin/cvs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.119 2007/06/27 04:23:54 joris Exp $ */ +/* $OpenBSD: diff.c,v 1.120 2007/06/28 21:38:09 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -160,7 +160,7 @@ cvs_diff_local(struct cvs_file *cf) BUF *b1; struct stat st; struct timeval tv[2], tv2[2]; - char rbuf[16], *p1, *p2; + char rbuf[CVS_REV_BUFSZ], *p1, *p2; r1 = NULL; b1 = NULL; |