diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-12-30 02:03:29 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-12-30 02:03:29 +0000 |
commit | eba90c397238078d4145046f9f6056ced60b52a2 (patch) | |
tree | 066c330f8d693daf3ac9fd783129c19fb2049af8 /usr.bin/cvs/cvs.h | |
parent | 0a6f2c57253516d05a4ecc720d8b82cc8f25697a (diff) |
major cleanup of the functions handling the remote cvs protocol.
makes the code a lot more readable and understandable.
ok xsa@ and niallo@
Diffstat (limited to 'usr.bin/cvs/cvs.h')
-rw-r--r-- | usr.bin/cvs/cvs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 1a1c128e0fe..89296c0df67 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.93 2005/12/24 19:07:52 xsa Exp $ */ +/* $OpenBSD: cvs.h,v 1.94 2005/12/30 02:03:28 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -407,7 +407,7 @@ int cvs_hist_append(CVSHIST *, struct cvs_hent *); char *cvs_logmsg_open(const char *); char *cvs_logmsg_get(const char *, struct cvs_flist *, struct cvs_flist *, struct cvs_flist *); -int cvs_logmsg_send(struct cvsroot *, const char *); +void cvs_logmsg_send(struct cvsroot *, const char *); /* date.y */ time_t cvs_date_parse(const char *); |