Diff for /embedaddon/sudo/plugins/sudoers/logwrap.c between versions 1.1.1.1 and 1.1.1.2

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

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>