diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-07-23 11:19:47 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-07-23 11:19:47 +0000 |
commit | 316e7b4ce9ddeaa9df048f14eb629be01439aa55 (patch) | |
tree | f4f74e1c0f91731e6481818a3caeac96f0c80c34 /usr.bin/cvs/cvs.h | |
parent | 9cb789f35012b533e6bb67128d89a9154482620c (diff) |
rewrite of the file code. the previous one was just
a mess and not clean.
this code is much cleaner, faster, and uses less memory overall.
tested by xsa@, brad@, Michael Knudsen, and myself.
okay xsa@
Diffstat (limited to 'usr.bin/cvs/cvs.h')
-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 5df82557544..c0628f882dd 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.71 2005/07/23 10:49:35 xsa Exp $ */ +/* $OpenBSD: cvs.h,v 1.72 2005/07/23 11:19:46 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -309,7 +309,7 @@ extern int cvs_cmdop; extern int cvs_nocase; extern int cvs_noexec; extern int cvs_readonly; - +extern int cvs_error; extern CVSFILE *cvs_files; extern struct cvs_cmd *cvs_cdt[]; |