2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 22:35:10 +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

@@ -108,7 +108,7 @@ get_ipa_hostname(char **shostp, char **lhostp)
int ret = false;
ssize_t len;
FILE *fp;
debug_decl(get_ipa_hostname, SUDOERS_DEBUG_SSSD)
debug_decl(get_ipa_hostname, SUDOERS_DEBUG_SSSD);
fp = fopen(_PATH_SSSD_CONF, "r");
if (fp != NULL) {
@@ -247,7 +247,7 @@ sss_to_sudoers(struct sudo_sss_handle *handle,
struct userspec *us;
struct member *m;
unsigned int i;
debug_decl(sss_to_sudoers, SUDOERS_DEBUG_SSSD)
debug_decl(sss_to_sudoers, SUDOERS_DEBUG_SSSD);
/* We only have a single userspec */
if ((us = calloc(1, sizeof(*us))) == NULL)