/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugin-helpers/mandos-client-iprouteadddel.c

  • Committer: Teddy Hogeborn
  • Date: 2021-03-21 18:48:43 UTC
  • Revision ID: teddy@recompile.se-20210321184843-va7cywxnlf31tbyt
Break long line (white space change only)

* plugin-runner.c (main): Break long line.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
__attribute__((format (gnu_printf, 2, 3), nonnull))
94
94
int fprintf_plus(FILE *stream, const char *format, ...){
95
95
  va_list ap;
96
 
  va_start (ap, format);
 
96
  va_start(ap, format);
97
97
  
98
98
  fprintf(stream, "Mandos plugin helper %s: ",
99
99
          program_invocation_short_name);