debug_decl and debug_decl_vars now require a semicolon at the end.
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user