diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2006-03-27 21:56:33 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2006-03-27 21:56:33 +0000 |
commit | 1f65e9054589858f7ce4ca2f2e730a1254c6261a (patch) | |
tree | a85e05e55aef01a8d20f33afdfbc26461adbc0b3 /usr.bin/cvs/rcs.h | |
parent | 636cc176844d7cb4cc798ddfb37c732892469de4 (diff) |
- properly implement GNU file modes. basically, checkout will inherit
permissions from rcs file and initial checkin will inherit permissions from
working file.
problem spotted by uwe@
ok ray@ xsa@
Diffstat (limited to 'usr.bin/cvs/rcs.h')
-rw-r--r-- | usr.bin/cvs/rcs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/rcs.h b/usr.bin/cvs/rcs.h index af6bc3e90a1..cba66110caf 100644 --- a/usr.bin/cvs/rcs.h +++ b/usr.bin/cvs/rcs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.h,v 1.53 2006/03/27 15:26:12 xsa Exp $ */ +/* $OpenBSD: rcs.h,v 1.54 2006/03/27 21:56:32 niallo Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -250,6 +250,7 @@ const char *rcs_state_get(RCSFILE *, RCSNUM *); int rcs_state_check(const char *); RCSNUM *rcs_tag_resolve(RCSFILE *, const char *); const char *rcs_errstr(int); +int rcs_write(RCSFILE *); int rcs_kflag_get(const char *); |