mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Optimize the CVS bug #17168 fix by relaxing the conditions for update.
This commit is contained in:
parent
5d5028e774
commit
b1ca926d0f
1 changed files with 3 additions and 1 deletions
|
|
@ -34,7 +34,9 @@ keywords_may_change (aflag, vers)
|
|||
aflag
|
||||
/* ...and... */
|
||||
&& (/* ...there used to be a tag which subs in Name keys... */
|
||||
(vers->entdata->tag && !isdigit (vers->entdata->tag[0]))
|
||||
(vers->entdata->tag && !isdigit (vers->entdata->tag[0])
|
||||
&& vers->tag && !isdigit (vers->tag[0])
|
||||
&& strcmp (vers->entdata->tag, vers->tag))
|
||||
/* ...or there used to be a keyword mode which may be
|
||||
* changed by -A...
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue