mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.4 KiB

  1. --- ./modules/ssl/ssl_engine_pphrase.c.orig 2005-07-18 14:47:47.000000000 +0200
  2. +++ ./modules/ssl/ssl_engine_pphrase.c 2005-07-18 14:48:13.000000000 +0200
  3. @@ -681,7 +681,7 @@
  4. ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,
  5. "Init: Failed to create pass phrase pipe '%s'",
  6. sc->server->pphrase_dialog_path);
  7. - PEMerr(PEM_F_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
  8. + PEMerr(PEM_F_PEM_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
  9. memset(buf, 0, (unsigned int)bufsize);
  10. return (-1);
  11. }
  12. @@ -691,7 +691,7 @@
  13. }
  14. else { /* sc->server->pphrase_dialog_type == SSL_PPTYPE_BUILTIN */
  15. #ifdef WIN32
  16. - PEMerr(PEM_F_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
  17. + PEMerr(PEM_F_PEM_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
  18. memset(buf, 0, (unsigned int)bufsize);
  19. return (-1);
  20. #else
  21. @@ -742,7 +742,7 @@
  22. i = EVP_read_pw_string(buf, bufsize, "", FALSE);
  23. }
  24. if (i != 0) {
  25. - PEMerr(PEM_F_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
  26. + PEMerr(PEM_F_PEM_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
  27. memset(buf, 0, (unsigned int)bufsize);
  28. return (-1);
  29. }