diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-30 01:49:27 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-30 01:49:27 +0000 |
commit | b59c4319a2b0bee7cbb7f9ef3342f372940000e1 (patch) | |
tree | a92383f8032facbf9c49611d38ee8dd3cfeaa963 /usr.bin/cvs/getlog.c | |
parent | f1a256bf9c1770f12d8fbfedbab0ecc0c472d43d (diff) |
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/getlog.c')
-rw-r--r-- | usr.bin/cvs/getlog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/getlog.c b/usr.bin/cvs/getlog.c index bf11e55abcd..5e26d817fa1 100644 --- a/usr.bin/cvs/getlog.c +++ b/usr.bin/cvs/getlog.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getlog.c,v 1.2 2004/07/29 18:23:26 jfb Exp $ */ +/* $OpenBSD: getlog.c,v 1.3 2004/07/30 01:49:23 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -38,6 +38,7 @@ #include "log.h" #include "rcs.h" #include "sock.h" +#include "proto.h" #define CVS_GLOG_RFONLY 0x01 |