/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 mandos-client.c

  • Committer: Teddy Hogeborn
  • Date: 2008-08-11 07:41:40 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080811074140-3wrl2jux1s0jy5kk
* mandos-client.c (print_out_password): Strip trailing '\n'.
  (main): Do not add trailing newline on fallback.

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
}
172
172
 
173
173
bool print_out_password(const char *buffer, size_t length){
174
 
  size_t ret;
175
 
  for(size_t written = 0; written < length; written += ret){
 
174
  ssize_t ret;
 
175
  if(length>0 and buffer[length-1] == '\n'){
 
176
    length--;
 
177
  }
 
178
  for(size_t written = 0; written < length; written += (size_t)ret){
176
179
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
177
180
                                   length - written));
178
181
    if(ret < 0){
304
307
  
305
308
  ret = argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
306
309
  if (ret == ARGP_ERR_UNKNOWN){
307
 
    fprintf(stderr, "Unkown error while parsing arguments\n");
 
310
    fprintf(stderr, "Unknown error while parsing arguments\n");
308
311
    exitstatus = EXIT_FAILURE;
309
312
    goto end;
310
313
  }
341
344
    }
342
345
    ret = argp_parse (&argp, new_argc, plus_argv, 0, 0, &plugin_list);
343
346
    if (ret == ARGP_ERR_UNKNOWN){
344
 
      fprintf(stderr, "Unkown error while parsing arguments\n");
 
347
      fprintf(stderr, "Unknown error while parsing arguments\n");
345
348
      exitstatus = EXIT_FAILURE;
346
349
      goto end;
347
350
    }
716
719
      exitstatus = EXIT_FAILURE;
717
720
      goto end;
718
721
    }
719
 
    bret = print_out_password("\n", 1);
720
 
    if(not bret){
721
 
      perror("print_out_password");
722
 
      exitstatus = EXIT_FAILURE;
723
 
    }
724
722
  }
725
723
 
726
724
 end: