diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-12-08 17:22:49 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-12-08 17:22:49 +0000 |
commit | 9b87f93448fdfd5ec12156b7bcdb288c675ed0b8 (patch) | |
tree | 38fa5676cea62fffeb0504044ac3ebab5a412626 /usr.bin/cvs/cvs.h | |
parent | 157a73eff774014ffb079b2baeb65cafcd5f4700 (diff) |
embrace and extend (!) cvs_logmsg_get() so we can now display
information based on its availability and have separate sections for
the Added, Modified and Removed file lists. this will allow us to
use the same call for add, commit, import and possibly others
Original patch by Joris Vink, some rework from me for the other
sections
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 1c6d8370ecf..54c09dc980a 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.36 2004/12/08 16:07:43 jfb Exp $ */ +/* $OpenBSD: cvs.h,v 1.37 2004/12/08 17:22:48 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -282,7 +282,7 @@ int cvs_hist_append (CVSHIST *, struct cvs_hent *); /* from logmsg.c */ char* cvs_logmsg_open (const char *); -char* cvs_logmsg_get (const char *, struct cvs_flist *); +char* cvs_logmsg_get (const char *, struct cvs_flist *, struct cvs_flist *, struct cvs_flist *); int cvs_logmsg_send (struct cvsroot *, const char *); /* from util.c */ |