--- embedaddon/sudo/plugins/sudoers/logwrap.c 2012/02/21 16:23:02 1.1.1.1 +++ embedaddon/sudo/plugins/sudoers/logwrap.c 2013/07/22 10:46:12 1.1.1.2 @@ -41,6 +41,7 @@ writeln_wrap(FILE *fp, char *line, size_t len, size_t char *indent = ""; char *beg = line; char *end; + debug_decl(writeln_wrap, SUDO_DEBUG_LOGGING) /* * Print out line with word wrap around maxlen characters. @@ -69,4 +70,6 @@ writeln_wrap(FILE *fp, char *line, size_t len, size_t /* Print remainder, if any. */ if (len) fprintf(fp, "%s%s\n", indent, beg); + + debug_return; }