diff options
author | 2004-07-30 01:49:21 +0000 | |
---|---|---|
committer | 2004-07-30 01:49:21 +0000 | |
commit | dc6a6879fd757c2f8df1f66a0271034ce65269c6 (patch) | |
tree | 432ff5b7cf425d3aa50791735bc090f9473ee7e2 /usr.bin/cvs/commit.c | |
parent | Do not negotiate or use non-async transfer rates until probing (i.e. (diff) | |
download | wireguard-openbsd-dc6a6879fd757c2f8df1f66a0271034ce65269c6.tar.xz wireguard-openbsd-dc6a6879fd757c2f8df1f66a0271034ce65269c6.zip |
Move to the new API for the client-server protocol. All functions now
take a cvs root structure as parameter. This will allow for much easier
management of CVS trees that make use of multiple roots.
Diffstat (limited to 'usr.bin/cvs/commit.c')
-rw-r--r-- | usr.bin/cvs/commit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c index 8e6a3b99463..263da620078 100644 --- a/usr.bin/cvs/commit.c +++ b/usr.bin/cvs/commit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: commit.c,v 1.1.1.1 2004/07/13 22:02:40 jfb Exp $ */ +/* $OpenBSD: commit.c,v 1.2 2004/07/30 01:49:22 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -37,6 +37,7 @@ #include "cvs.h" #include "log.h" +#include "proto.h" |