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.

48 lines
1.4 KiB

  1. Index: daemon/remote.c
  2. ===================================================================
  3. --- a/daemon/remote.c
  4. +++ b/daemon/remote.c
  5. @@ -1950,6 +1950,11 @@
  6. return NULL;
  7. }
  8. } else {
  9. +#ifndef HAVE_SSL_SET1_HOST
  10. + if(auth_name)
  11. + log_err("no name verification functionality in "
  12. + "ssl library, ignored name for %s", todo);
  13. +#endif
  14. /* add address */
  15. if(!delegpt_add_addr_mlc(dp, &addr, addrlen, 0, 0,
  16. auth_name)) {
  17. Index: iterator/iter_fwd.c
  18. ===================================================================
  19. --- a/iterator/iter_fwd.c
  20. +++ b/iterator/iter_fwd.c
  21. @@ -239,6 +239,11 @@
  22. s->name, p->str);
  23. return 0;
  24. }
  25. +#ifndef HAVE_SSL_SET1_HOST
  26. + if(tls_auth_name)
  27. + log_err("no name verification functionality in "
  28. + "ssl library, ignored name for %s", p->str);
  29. +#endif
  30. if(!delegpt_add_addr_mlc(dp, &addr, addrlen, 0, 0,
  31. tls_auth_name)) {
  32. log_err("out of memory");
  33. Index: iterator/iter_hints.c
  34. ===================================================================
  35. --- a/iterator/iter_hints.c
  36. +++ b/iterator/iter_hints.c
  37. @@ -252,6 +252,11 @@
  38. s->name, p->str);
  39. return 0;
  40. }
  41. +#ifndef HAVE_SSL_SET1_HOST
  42. + if(auth_name)
  43. + log_err("no name verification functionality in "
  44. + "ssl library, ignored name for %s", p->str);
  45. +#endif
  46. if(!delegpt_add_addr_mlc(dp, &addr, addrlen, 0, 0,
  47. auth_name)) {
  48. log_err("out of memory");