aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-05-09 16:41:00 +0000
committerBodo Möller <bodo@openssl.org>1999-05-09 16:41:00 +0000
commit8d1157c71c477be91bbf276ff0b0e6b1d4c139c5 (patch)
treebfe73eac3082a8ca31c1ff605a74274d60c88103 /ssl
parentc8b41850793faed7fccf4fe4403f774266412f22 (diff)
downloadopenssl-8d1157c71c477be91bbf276ff0b0e6b1d4c139c5.zip
openssl-8d1157c71c477be91bbf276ff0b0e6b1d4c139c5.tar.gz
openssl-8d1157c71c477be91bbf276ff0b0e6b1d4c139c5.tar.bz2
One comment was in the wrong line ... some others are new.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl.h2
-rw-r--r--ssl/ssl_locl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/ssl/ssl.h b/ssl/ssl.h
index 98f64c2..9964b66 100644
--- a/ssl/ssl.h
+++ b/ssl/ssl.h
@@ -242,6 +242,7 @@ typedef struct ssl_session_st
/* The cert is the certificate used to establish this connection */
struct cert_st /* CERT */ *cert;
+ /* XXX should be struct sess_cert_st *sess_cert */
/* This is the cert for the other end. On servers, it will be
* the same as cert->x509 */
@@ -562,7 +563,6 @@ struct ssl_st
/* client cert? */
/* This is used to hold the server certificate used */
struct cert_st /* CERT */ *cert;
- /* XXX should be struct sess_cert_st *sess_cert */
/* the session_id_context is used to ensure sessions are only reused
* in the appropriate context */
diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h
index f9635d6..4f3d56f 100644
--- a/ssl/ssl_locl.h
+++ b/ssl/ssl_locl.h
@@ -275,7 +275,7 @@ typedef struct cert_st
STACK_OF(X509) *cert_chain; /* XXX should only exist in sess_cert_st */
- int references;
+ int references; /* XXX should only exist in sess_cert_st */
} CERT;