/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-request.c

Fixed unkown -> unknown
updated TODO

Show diffs side-by-side

added added

removed removed

Lines of Context:
881
881
    seckeyfile = combinepath(keydir, seckeyfile);
882
882
    if (seckeyfile == NULL){
883
883
      perror("combinepath");
884
 
      exitcode = EXIT_FAILURE;
885
884
      goto end;
886
885
    }
887
886
 
888
887
    ret = init_gnutls_global(&mc, pubkeyfile, seckeyfile);
889
888
    if (ret == -1){
890
 
      fprintf(stderr, "init_gnutls_global failed\n");
891
 
      exitcode = EXIT_FAILURE;
 
889
      fprintf(stderr, "init_gnutls_global\n");
892
890
      goto end;
893
891
    } else {
894
892
      gnutls_initalized = true;