/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-06-23 22:27:15 UTC
  • mto: This revision was merged to the branch mainline in revision 485.
  • Revision ID: belorn@fukt.bsnet.se-20110623222715-q5wro9ma9iyjl367
* Makefile (CFLAGS): Added "-lrt" to include real time library.
* plugins.d/mandos-client.c: use scandir(3) instead of readdir(3)
                             Prefix all debug output with "Mandos plugin " + program_invocation_short_name
                             Retry servers that failed to provide password.
                             New option --retry SECONDS that sets the interval between rechecking.
                             --retry also controls how often it retries a server when using --connect.
* plugins.d/splashy.c:  Prefix all debug output with "Mandos plugin " + program_invocation_short_name
* plugins.d/usplash.c: --||--
* plugins.d/askpass-fifo.c: --||--
* plugins.d/password-prompt.c: --||--
* plugins.d/plymouth.c: --||--
* mandos: Lower logger level from warning to info on failed client requests because client was disabled or unknown fingerprint.
* plugins.d/plymouth.c (get_pid): bug fix. Was not calling free on direntries. 

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