diff options
author | 2008-03-13 17:06:09 +0000 | |
---|---|---|
committer | 2008-03-13 17:06:09 +0000 | |
commit | fbbb8b44cc09fdf143ad31debb2dec16fa90cf55 (patch) | |
tree | 527c74d82831cf3edb307a4804b7192b4ddbdb25 | |
parent | properly initialize variables (diff) | |
download | wireguard-openbsd-fbbb8b44cc09fdf143ad31debb2dec16fa90cf55.tar.xz wireguard-openbsd-fbbb8b44cc09fdf143ad31debb2dec16fa90cf55.zip |
use RCS_PARSE_FULLY for CVS_OP_ADMIN as well.
-rw-r--r-- | usr.bin/cvs/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c index e55e51e4dfc..abec7b22246 100644 --- a/usr.bin/cvs/file.c +++ b/usr.bin/cvs/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.235 2008/03/09 18:02:17 joris Exp $ */ +/* $OpenBSD: file.c,v 1.236 2008/03/13 17:06:09 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -687,6 +687,7 @@ cvs_file_classify(struct cvs_file *cf, const char *tag) case CVS_OP_COMMIT: rflags = RCS_WRITE; break; + case CVS_OP_ADMIN: case CVS_OP_IMPORT: case CVS_OP_LOG: case CVS_OP_RLOG: |