diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-04 18:23:59 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-04 18:23:59 +0000 |
commit | bb6fd23cd9ea4d27e10b0e6b40885c7da78c0337 (patch) | |
tree | c6677438fe0eaf5d1e27f1bc4a1658913a819ecb /usr.bin/cvs/util.h | |
parent | 397e2a22c43b60e269b2f10956ddcee7dd0ee123 (diff) |
Stripped off 'nb', which was (or was supposed to be) used to distinguish
between a named branch and a revision number supplied by -r. This can
be done easier in cvs_write_tagfile directly.
OK joris@
Diffstat (limited to 'usr.bin/cvs/util.h')
-rw-r--r-- | usr.bin/cvs/util.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/cvs/util.h b/usr.bin/cvs/util.h index 1e80fa00bff..e34bdc853ef 100644 --- a/usr.bin/cvs/util.h +++ b/usr.bin/cvs/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.22 2007/09/13 13:10:57 tobias Exp $ */ +/* $OpenBSD: util.h,v 1.23 2008/02/04 18:23:58 tobias Exp $ */ /* * Copyright (c) 2006 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -31,8 +31,7 @@ void cvs_get_repository_path(const char *, char *, size_t); void cvs_get_repository_name(const char *, char *, size_t); void cvs_modetostr(mode_t, char *, size_t); void cvs_strtomode(const char *, mode_t *); -void cvs_mkadmin(const char *, const char *, const char *, - char *, char *, int); +void cvs_mkadmin(const char *, const char *, const char *, char *, char *); void cvs_mkpath(const char *, char *); int cvs_cksum(const char *, char *, size_t); int cvs_getargv(const char *, char **, int); |