CVS update: /ccvs/src/
[email protected] 3 Jun 2005 15:58:58 -0000
| Newsgroups | gmane.comp.version-control.cvs.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: dprice Date: 05/06/03 08:58:58 Modified: /ccvs/src/ ChangeLog, modules.c, wrapper.c Log: * modules.c (my_module), wrappers.c (wrap_add): Use new expand_path API. File Changes: Directory: /ccvs/src/ ===================== File [changed]: ChangeLog Url: https://ccvs.cvshome.org/source/browse/ccvs/src/ChangeLog?r1=1.3207&r2=1.3208 Delta lines: +5 -0 ------------------- --- ChangeLog 3 Jun 2005 15:36:35 -0000 1.3207 +++ ChangeLog 3 Jun 2005 15:58:56 -0000 1.3208 @@ -1,5 +1,10 @@ 2005-06-03 Derek Price <[email protected]> + * modules.c (my_module), wrappers.c (wrap_add): Use new expand_path + API. + +2005-06-03 Derek Price <[email protected]> + * cvs.h (expand_path): Rearrange args and use bool for formatsafe flag. * expand_path.c: Globally: Remove init of globals to NULL by C89, reformat to CVS conventions, remove unnecessary comparisons to NULL and File [changed]: modules.c Url: https://ccvs.cvshome.org/source/browse/ccvs/src/modules.c?r1=1.96&r2=1.97 Delta lines: +1 -1 ------------------- --- modules.c 26 May 2005 17:48:06 -0000 1.96 +++ modules.c 3 Jun 2005 15:58:56 -0000 1.97 @@ -684,7 +684,7 @@ } /* XXX can we determine the line number for this entry??? */ - expanded_path = expand_path (prog, "modules", 0, 0); + expanded_path = expand_path (prog, false, "modules", 0); if (expanded_path != NULL) { run_setup (expanded_path); File [changed]: wrapper.c Url: https://ccvs.cvshome.org/source/browse/ccvs/src/wrapper.c?r1=1.43&r2=1.44 Delta lines: +2 -2 ------------------- --- wrapper.c 17 Mar 2005 17:15:20 -0000 1.43 +++ wrapper.c 3 Jun 2005 15:58:56 -0000 1.44 @@ -402,7 +402,7 @@ free(e.fromcvsFilter); /* FIXME: error message should say where the bad value came from. */ - e.fromcvsFilter=expand_path (temp, "<wrapper>", 0, 0); + e.fromcvsFilter = expand_path (temp, false, "<wrapper>", 0); if (!e.fromcvsFilter) error (1, 0, "Correct above errors first"); break; @@ -416,7 +416,7 @@ free(e.tocvsFilter); /* FIXME: error message should say where the bad value came from. */ - e.tocvsFilter=expand_path (temp, "<wrapper>", 0, 0); + e.tocvsFilter = expand_path (temp, false, "<wrapper>", 0); if (!e.tocvsFilter) error (1, 0, "Correct above errors first"); break;