/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: 2012-02-26 11:49:48 UTC
  • mfrom: (560.1.2 deprecate-dbus)
  • Revision ID: teddy@recompile.se-20120226114948-eho4a6wn5ock5h7g
Merge D-Bus interface annotations and D-Bus interface deprecations.

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);