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

@@ -46,7 +46,7 @@ static int
linux_audit_open(void)
{
static int au_fd = -1;
debug_decl(linux_audit_open, SUDOERS_DEBUG_AUDIT)
debug_decl(linux_audit_open, SUDOERS_DEBUG_AUDIT);
if (au_fd != -1)
debug_return_int(au_fd);
@@ -69,7 +69,7 @@ linux_audit_command(char *argv[], int result)
int au_fd, rc = -1;
char *command, *cp, **av;
size_t size, n;
debug_decl(linux_audit_command, SUDOERS_DEBUG_AUDIT)
debug_decl(linux_audit_command, SUDOERS_DEBUG_AUDIT);
/* Don't return an error if auditing is not configured. */
if ((au_fd = linux_audit_open()) < 0)