diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-01-03 19:27:29 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-01-03 19:27:29 +0000 |
commit | 5d393e24c366a132fc8299ea3782759230fcd21c (patch) | |
tree | a9cb49b5df7adf1143fb8c7c41555e51a587c355 /usr.bin/cvs/remote.h | |
parent | 3b57861f625c1750e1ceaaab2d70db3aad24f9d2 (diff) |
fix CVS_CLIENT_LOG logging, we were missing parts
which was making it very hard to correctly debug remote connections.
Diffstat (limited to 'usr.bin/cvs/remote.h')
-rw-r--r-- | usr.bin/cvs/remote.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/cvs/remote.h b/usr.bin/cvs/remote.h index 3f06631c5f0..8966d72788e 100644 --- a/usr.bin/cvs/remote.h +++ b/usr.bin/cvs/remote.h @@ -1,4 +1,4 @@ -/* $OpenBSD: remote.h,v 1.15 2006/12/19 15:12:59 joris Exp $ */ +/* $OpenBSD: remote.h,v 1.16 2007/01/03 19:27:28 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -104,6 +104,9 @@ char *cvs_remote_input(void); BUF *cvs_remote_receive_file(size_t len); void cvs_remote_send_file(const char *); +extern int cvs_client_inlog_fd; +extern int cvs_client_outlog_fd; + extern struct cvs_req cvs_requests[]; extern struct cvs_resp cvs_responses[]; |