CVS update [cvs1-11-x-branch]: /ccvs/src/
[email protected] 17 Mar 2005 15:57:44 -0000
| Newsgroups | gmane.comp.version-control.cvs.cvs |
|---|---|
| Message-ID | <[email protected]> |
Tag: cvs1-11-x-branch User: dprice Date: 05/03/17 07:57:44 Modified: /ccvs/src/ ChangeLog, log.c Log: * log.c (log_expand_revlist): Suppress message and not error handling when really_quiet. File Changes: Directory: /ccvs/src/ ===================== File [changed]: ChangeLog Url: https://ccvs.cvshome.org/source/browse/ccvs/src/ChangeLog?r1=1.2336.2.356&r2=1.2336.2.357 Delta lines: +5 -0 ------------------- --- ChangeLog 17 Mar 2005 15:39:09 -0000 1.2336.2.356 +++ ChangeLog 17 Mar 2005 15:57:42 -0000 1.2336.2.357 @@ -1,5 +1,10 @@ 2005-03-17 Derek Price <[email protected]> + * log.c (log_expand_revlist): Suppress message and not error handling + when really_quiet. + +2005-03-17 Derek Price <[email protected]> + * client.c (call_in_directory): Put function call after var decls. 2005-03-16 Derek Price <[email protected]> File [changed]: log.c Url: https://ccvs.cvshome.org/source/browse/ccvs/src/log.c?r1=1.79.4.15&r2=1.79.4.16 Delta lines: +4 -3 ------------------- --- log.c 16 Mar 2005 22:00:44 -0000 1.79.4.15 +++ log.c 17 Mar 2005 15:57:42 -0000 1.79.4.16 @@ -1096,8 +1096,9 @@ free (branch); } } - if (nr->first == NULL && !really_quiet) + if (!nr->first) { + if (!really_quiet) error (0, 0, "warning: no branch `%s' in `%s'", r->first, rcs->path); nr->last = NULL;