[svn] *** empty log message ***

This commit is contained in:
hniksic 2005-05-11 01:47:18 -07:00
parent 7bde962912
commit 4f38e39228
1 changed files with 2 additions and 3 deletions

View File

@ -446,8 +446,8 @@ ssl_check_server_identity (int fd, const char *host)
of type dNSName is present, that MUST be used as the identity."
- When matching against common names, it should loop over all
common names and choose the most specific (apparently the last
one). */
common names and choose the most specific one, i.e. the last
one, not the first one, which the current code picks. */
peer_CN[0] = '\0';
X509_NAME_get_text_by_NID (X509_get_subject_name (peer_cert),
@ -471,4 +471,3 @@ ssl_check_server_identity (int fd, const char *host)
/* Allow --no-check-cert to disable certificate checking. */
return opt.check_cert ? retval : 1;
}