Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tls: fix reference to certificate object subjectAltName in checkServerIdentity function #42470

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Mar 25, 2022

  1. tls: fix reference to certificate object subjectAltName in checkServe…

    …rIdentity function
    
    The checkServerIdentify() function always fails with ERR_TLS_CERT_ALTNAME_INVALID
    error due to a bad reference to the certificate object's subjectAltName
    property. Changed the property reference from all lowercase to camelcase.
    bnielsen1965 committed Mar 25, 2022
    Configuration menu
    Copy the full SHA
    fb9607f View commit details
    Browse the repository at this point in the history
  2. tls: fix reference to certificate object subjectAltName

    Certificate property name is camel case, "subjectAltName" but
    tests and documentation was using all lowercase.
    bnielsen1965 committed Mar 25, 2022
    Configuration menu
    Copy the full SHA
    8329b8b View commit details
    Browse the repository at this point in the history