/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 plugins.d/splashy.c

  • Committer: Teddy Hogeborn
  • Date: 2014-03-28 21:31:12 UTC
  • Revision ID: teddy@recompile.se-20140328213112-2gldx4x8nlyy7era
Post-processing of man pages is no longer necessary.

* Makefile (DOCBOOKTOMAN): Remove call to MANPOST.
  (MANPOST): Remove.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
  
71
71
  va_start(ap, formatstring);
72
72
  ret = vasprintf(&text, formatstring, ap);
73
 
  if (ret == -1){
 
73
  if(ret == -1){
74
74
    fprintf(stderr, "Mandos plugin %s: ",
75
75
            program_invocation_short_name);
76
76
    vfprintf(stderr, formatstring, ap);