/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/askpass-fifo.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:
32
32
                                   ENFILE, ENOMEM, EBADF, EINVAL, EIO,
33
33
                                   EISDIR, EFBIG */
34
34
#include <error.h>              /* error() */
35
 
#include <stdio.h>              /* fprintf(), vfprintf(), vasprintf() */
 
35
#include <stdio.h>              /* fprintf(), vfprintf(),
 
36
                                   vasprintf() */
36
37
#include <stdlib.h>             /* EXIT_FAILURE, NULL, size_t, free(),
37
38
                                   realloc(), EXIT_SUCCESS */
38
39
#include <fcntl.h>              /* open(), O_RDONLY */
45
46
 
46
47
 
47
48
/* Function to use when printing errors */
48
 
void error_plus(int status, int errnum, const char *formatstring, ...){
 
49
void error_plus(int status, int errnum, const char *formatstring,
 
50
                ...){
49
51
  va_list ap;
50
52
  char *text;
51
53
  int ret;
53
55
  va_start(ap, formatstring);
54
56
  ret = vasprintf(&text, formatstring, ap);
55
57
  if (ret == -1){
56
 
    fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name);
 
58
    fprintf(stderr, "Mandos plugin %s: ",
 
59
            program_invocation_short_name);
57
60
    vfprintf(stderr, formatstring, ap);
58
61
    fprintf(stderr, ": ");
59
62
    fprintf(stderr, "%s\n", strerror(errnum));