Thread

Commits

  1. Fix typo in comment on OpenSSL PEM password callback type name.

  1. Incorrect OpenSSL type reference in code comment

    Daniel Gustafsson <daniel@yesql.se> — 2020-05-14T08:07:47Z

    The comment which refers to the OpenSSL PEM password callback type has a small
    typo, the type is called pem_password_cb and not pem_passwd_cb (which is an
    easy typo to make to make since confusingly enough the functions in OpenSSL are
    called SSL_*_passwd_cb).  PFA patch to fix this.
    
    cheers ./daniel
    
    
  2. Re: Incorrect OpenSSL type reference in code comment

    Heikki Linnakangas <hlinnaka@iki.fi> — 2020-05-14T10:58:01Z

    On 14/05/2020 11:07, Daniel Gustafsson wrote:
    > The comment which refers to the OpenSSL PEM password callback type has a small
    > typo, the type is called pem_password_cb and not pem_passwd_cb (which is an
    > easy typo to make to make since confusingly enough the functions in OpenSSL are
    > called SSL_*_passwd_cb).  PFA patch to fix this.
    
    Applied, thanks!
    
    - Heikki