/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/password-prompt.c

  • Committer: Teddy Hogeborn
  • Date: 2009-01-06 20:39:35 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090106203935-d2qbnqan0px7p7yp
* debian/control (Build-Depends): Removed "po-debconf".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  -*- coding: utf-8 -*- */
2
2
/*
3
 
 * Password-prompt - Read a password from the terminal and print it
 
3
 * Passprompt - Read a password from the terminal and print it
4
4
 * 
5
5
 * Copyright © 2008,2009 Teddy Hogeborn
6
6
 * Copyright © 2008,2009 Björn Påhlsson
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. */
84
86
      switch (key) {
85
87
      case 'p':
86
88
        prefix = arg;
98
100
      }
99
101
      return 0;
100
102
    }
101
 
    
 
103
  
102
104
    struct argp argp = { .options = options, .parser = parse_opt,
103
105
                         .args_doc = "",
104
106
                         .doc = "Mandos password-prompt -- Read and"
109
111
      return EXIT_FAILURE;
110
112
    }
111
113
  }
112
 
  
 
114
    
113
115
  if (debug){
114
116
    fprintf(stderr, "Starting %s\n", argv[0]);
115
117
  }
248
250
      fprintf(stderr, "getline() returned 0, retrying.\n");
249
251
    }
250
252
  }
251
 
  
 
253
 
252
254
  free(buffer);
253
255
  
254
256
  if (debug){