/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: Björn Påhlsson
  • Date: 2011-07-25 18:46:19 UTC
  • mfrom: (487 trunk)
  • mto: This revision was merged to the branch mainline in revision 489.
  • Revision ID: belorn@fukt.bsnet.se-20110725184619-l7vfsobr0bh9fc3l
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
                                   SIG_IGN, kill(), SIGKILL */
30
30
#include <stddef.h>             /* NULL */
31
31
#include <stdlib.h>             /* getenv() */
32
 
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(), fprintf() */
 
32
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(),
 
33
                                   fprintf() */
33
34
#include <stdlib.h>             /* EXIT_FAILURE, free(),
34
35
                                   EXIT_SUCCESS */
35
36
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
60
61
int signal_received;
61
62
 
62
63
/* Function to use when printing errors */
63
 
void error_plus(int status, int errnum, const char *formatstring, ...){
 
64
void error_plus(int status, int errnum, const char *formatstring,
 
65
                ...){
64
66
  va_list ap;
65
67
  char *text;
66
68
  int ret;
68
70
  va_start(ap, formatstring);
69
71
  ret = vasprintf(&text, formatstring, ap);
70
72
  if (ret == -1){
71
 
    fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name);
 
73
    fprintf(stderr, "Mandos plugin %s: ",
 
74
            program_invocation_short_name);
72
75
    vfprintf(stderr, formatstring, ap);
73
76
    fprintf(stderr, ": ");
74
77
    fprintf(stderr, "%s\n", strerror(errnum));