diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-07-31 21:08:18 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-07-31 21:08:18 +0000 |
commit | d729c7d385182b2a20a11878b0f697316fa2b253 (patch) | |
tree | c06b68e08d74c3d9a7b715963953317152c4bf68 /usr.bin/cvs/file.h | |
parent | 19cecfeeb521a910b0e5dadaffe11d89ad54aed7 (diff) |
nuke a totally unused flag for cf_flags
Diffstat (limited to 'usr.bin/cvs/file.h')
-rw-r--r-- | usr.bin/cvs/file.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/cvs/file.h b/usr.bin/cvs/file.h index dfa7f55170a..6e0a1f2f34b 100644 --- a/usr.bin/cvs/file.h +++ b/usr.bin/cvs/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.26 2005/07/25 11:07:00 xsa Exp $ */ +/* $OpenBSD: file.h,v 1.27 2005/07/31 21:08:17 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -124,8 +124,7 @@ typedef struct cvs_file { #define CVS_DIRF_STATIC 0x01 #define CVS_DIRF_STICKY 0x02 #define CVS_DIRF_BASE 0x04 -#define CVS_GDIR_IGNORE 0x08 -#define CVS_FILE_ONDISK 0x10 +#define CVS_FILE_ONDISK 0x08 #define CVS_DIR_ROOT(f) ((((f)->cf_type == DT_DIR) && \ ((f)->cf_root != NULL)) ? (f)->cf_root : \ |