diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-01-17 17:54:51 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-01-17 17:54:51 +0000 |
commit | 85fc4ab54949af79c8a6a9a5053de81499f6116a (patch) | |
tree | c1fe17e97e9da284c6c3c3961f56d14f4eba94b2 /usr.bin/cvs/remote.h | |
parent | 2859e665e7d21c18819d9bbb86fbb84215aa09a2 (diff) |
add support for remote checkout in both our client and server,
with this the last real dependency to actually be able to use opencvs
in a remote setup has been added.
based upon an initial diff from xsa@
'kay niallo@
Diffstat (limited to 'usr.bin/cvs/remote.h')
-rw-r--r-- | usr.bin/cvs/remote.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/remote.h b/usr.bin/cvs/remote.h index ea8dd061118..f7a55e032f6 100644 --- a/usr.bin/cvs/remote.h +++ b/usr.bin/cvs/remote.h @@ -1,4 +1,4 @@ -/* $OpenBSD: remote.h,v 1.18 2007/01/13 15:29:34 joris Exp $ */ +/* $OpenBSD: remote.h,v 1.19 2007/01/17 17:54:50 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -90,6 +90,7 @@ void cvs_server_add(char *); void cvs_server_admin(char *); void cvs_server_annotate(char *); void cvs_server_commit(char *); +void cvs_server_checkout(char *); void cvs_server_diff(char *); void cvs_server_init(char *); void cvs_server_log(char *); |