diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-06 10:04:56 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-06 10:04:56 +0000 |
commit | 15b6e511da05ba589064c2585edaf0d4fdf63c92 (patch) | |
tree | fdcea16541b7db1ef3579374828d35a3265afdfa | |
parent | 1f6f12f557bf2bcebb9179037691cb420db9809a (diff) |
add explicit comments for file status;
-rw-r--r-- | usr.bin/cvs/file.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/cvs/file.h b/usr.bin/cvs/file.h index 38bd550e147..c46e193562b 100644 --- a/usr.bin/cvs/file.h +++ b/usr.bin/cvs/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.21 2005/06/14 15:27:31 joris Exp $ */ +/* $OpenBSD: file.h,v 1.22 2005/07/06 10:04:55 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -61,14 +61,14 @@ struct cvs_entries; * The <cf_cvstat> field gives the file's status with regards to the CVS * repository. The file can be in any one of the CVS_FST_* states. */ -#define CVS_FST_UNKNOWN 0 -#define CVS_FST_UPTODATE 1 -#define CVS_FST_MODIFIED 2 -#define CVS_FST_ADDED 3 -#define CVS_FST_REMOVED 4 -#define CVS_FST_CONFLICT 5 +#define CVS_FST_UNKNOWN 0 /* Unknown */ +#define CVS_FST_UPTODATE 1 /* Up-to-date */ +#define CVS_FST_MODIFIED 2 /* Locally Modified */ +#define CVS_FST_ADDED 3 /* Locally Added */ +#define CVS_FST_REMOVED 4 /* Locally Removed */ +#define CVS_FST_CONFLICT 5 /* Unresolved Conflict */ #define CVS_FST_PATCHED 6 -#define CVS_FST_LOST 7 +#define CVS_FST_LOST 7 /* Needs Checkout */ SIMPLEQ_HEAD(cvs_flist, cvs_file); |