2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-09-05 00:35:14 +00:00

debug_decl and debug_decl_vars now require a semicolon at the end.

This commit is contained in:
Todd C. Miller
2019-12-22 08:48:16 -07:00
parent 5dcc28180e
commit 486ee2b71f
140 changed files with 1038 additions and 1038 deletions

View File

@@ -43,7 +43,7 @@ matches_env_pattern(const char *pattern, const char *var, bool *full_match)
bool iswild = false, match = false;
bool saw_sep = false;
const char *cp;
debug_decl(matches_env_pattern, SUDOERS_DEBUG_ENV)
debug_decl(matches_env_pattern, SUDOERS_DEBUG_ENV);
/* Locate position of the '=' separator in var=value. */
sep_pos = strcspn(var, "=");