diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-03-22 17:18:20 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-03-22 17:18:20 +0000 |
commit | 52fb9a580b4c558cfea9160e8c05c4f8fce48fd3 (patch) | |
tree | 9913daa864379a3ca75381a6f37edb55dfec85a7 /usr.bin | |
parent | bfcfcc95f91a9ef756b3184426381561b7f4dc23 (diff) |
use MD5_DIGEST_STRING_LENGTH instead of rolling our own lenght.
OK otto@ (before lock).
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/cvs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 74b2a435724..f00e1464ff5 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.134 2007/02/22 06:42:09 otto Exp $ */ +/* $OpenBSD: cvs.h,v 1.135 2007/03/22 17:18:19 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -48,7 +48,7 @@ #define CVS_HIST_CACHE 128 #define CVS_HIST_NBFLD 6 -#define CVS_CKSUM_LEN 33 /* length of a CVS checksum string */ +#define CVS_CKSUM_LEN MD5_DIGEST_STRING_LENGTH /* operations */ #define CVS_OP_UNKNOWN 0 |