Update TAGS_CHANGED macro based on parse.h

This commit is contained in:
Todd C. Miller
2021-08-16 13:28:19 -06:00
parent fc9a01936c
commit dad40a50a1

View File

@@ -2,6 +2,7 @@
* Returns true if any tags set in nt differ between ot and nt, else false.
#define TAGS_CHANGED(ot, nt) \
((TAG_SET((nt).follow) && (nt).follow != (ot).follow) || \
(TAG_SET((nt).intercept) && (nt).intercept != (ot).intercept) || \
(TAG_SET((nt).log_input) && (nt).log_input != (ot).log_input) || \
(TAG_SET((nt).log_output) && (nt).log_output != (ot).log_output) || \
(TAG_SET((nt).noexec) && (nt).noexec != (ot).noexec) || \