/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: Teddy Hogeborn
  • Date: 2011-07-25 18:49:17 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110725184917-m9eov06ex6vn9877
* mandos-monitor (MandosClientPropertyCache): Save match tag for
                                              PropertyChanged signal.
  (MandosClientPropertyCache.delete): New; unregister signal.
  (MandosClientWidget.__init__): Save matches for signals.
  (MandosClientWidget): Unregister signals.
  (UserInterface.find_and_remove_client): Log message when removing
                                          a nonexisting client.  Call
                                          client.delete() instead of
                                          self.remove_client().

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