diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2008-02-09 14:03:21 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2008-02-09 14:03:21 +0000 |
commit | c7228a1903a177a51210df19d874e0e1b2de6a21 (patch) | |
tree | fdc9cc203d541f4d12946209c3ccef31c078e024 /usr.bin/cvs/rcs.h | |
parent | 138924ed53f662e659d3a013552fd6b48793259d (diff) |
- always remove the additional .0 from magic branches, even when
running the log command.
- change getlog.c so it will add any .0 for magic branches in its output
if required
less confusing for rcs_translate_tag();
Diffstat (limited to 'usr.bin/cvs/rcs.h')
-rw-r--r-- | usr.bin/cvs/rcs.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/cvs/rcs.h b/usr.bin/cvs/rcs.h index 259793cc228..7b7b3c3999f 100644 --- a/usr.bin/cvs/rcs.h +++ b/usr.bin/cvs/rcs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.h,v 1.86 2008/01/31 22:19:36 tobias Exp $ */ +/* $OpenBSD: rcs.h,v 1.87 2008/02/09 14:03:20 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -105,7 +105,6 @@ struct rcs_kw { #define RCSNUM_ISBRANCH(n) ((n)->rn_len % 2) #define RCSNUM_ISBRANCHREV(n) (!((n)->rn_len % 2) && ((n)->rn_len >= 4)) -#define RCSNUM_NO_MAGIC (1<<0) /* file flags */ #define RCS_READ (1<<0) @@ -288,6 +287,4 @@ void rcsnum_cpy(const RCSNUM *, RCSNUM *, u_int); int rcsnum_cmp(RCSNUM *, RCSNUM *, u_int); int rcsnum_differ(RCSNUM *, RCSNUM *); -extern int rcsnum_flags; - #endif /* RCS_H */ |