diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-01-18 16:45:53 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-01-18 16:45:53 +0000 |
commit | 1d2bf3c06fb24ab6e3c6d60346f8d9e6359384fc (patch) | |
tree | c63f3694e6fb2b2c77ae81bc879caafcad1316d2 /usr.bin/cvs/remote.h | |
parent | 836bc0a4c096fe519947f933469838dd10809ec3 (diff) |
import improvements:
- add support for remote import in opencvs client and server.
- do not free already free'd buffers in import_update()
- do not append a '\0' to the loaded file buffer, this was bad behaviour
makes import work fine both locally and remotely.
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 f7a55e032f6..cf1d0b9f93b 100644 --- a/usr.bin/cvs/remote.h +++ b/usr.bin/cvs/remote.h @@ -1,4 +1,4 @@ -/* $OpenBSD: remote.h,v 1.19 2007/01/17 17:54:50 joris Exp $ */ +/* $OpenBSD: remote.h,v 1.20 2007/01/18 16:45:52 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -87,6 +87,7 @@ void cvs_server_update_patches(char *); void cvs_server_update_entry(const char *, struct cvs_file *cf); void cvs_server_add(char *); +void cvs_server_import(char *); void cvs_server_admin(char *); void cvs_server_annotate(char *); void cvs_server_commit(char *); |