/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugins.d/password-prompt.c

* plugin-runner.c (main): Bug fix; do not accept a "d" character after
                          user ID or group ID numbers.  Bug fix: use
                          "%u" when printing PID of coredumped plugin,
                          not "%d".
* plugins.d/password-prompt.c (main): Remove comment which was copied
                                      from another program by mistake.
* plugins.d/splashy.c: Only comment changes.
* plugins.d/usplash.c: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  -*- coding: utf-8 -*- */
2
2
/*
3
 
 * Passprompt - Read a password from the terminal and print it
 
3
 * Password-prompt - Read a password from the terminal and print it
4
4
 * 
5
 
 * Copyright © 2008 Teddy Hogeborn
6
 
 * Copyright © 2008 Björn Påhlsson
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
7
7
 * 
8
8
 * This program is free software: you can redistribute it and/or
9
9
 * modify it under the terms of the GNU General Public License as
79
79
        .doc = "Debug mode", .group = 3 },
80
80
      { .name = NULL }
81
81
    };
82
 
  
 
82
    
83
83
    error_t parse_opt (int key, char *arg, struct argp_state *state) {
84
 
      /* Get the INPUT argument from `argp_parse', which we know is a
85
 
         pointer to our plugin list pointer. */
86
84
      switch (key) {
87
85
      case 'p':
88
86
        prefix = arg;
100
98
      }
101
99
      return 0;
102
100
    }
103
 
  
 
101
    
104
102
    struct argp argp = { .options = options, .parser = parse_opt,
105
103
                         .args_doc = "",
106
104
                         .doc = "Mandos password-prompt -- Read and"
111
109
      return EXIT_FAILURE;
112
110
    }
113
111
  }
114
 
    
 
112
  
115
113
  if (debug){
116
114
    fprintf(stderr, "Starting %s\n", argv[0]);
117
115
  }
250
248
      fprintf(stderr, "getline() returned 0, retrying.\n");
251
249
    }
252
250
  }
253
 
 
 
251
  
254
252
  free(buffer);
255
253
  
256
254
  if (debug){