One comment was in the wrong line ... some others are new.
authorBodo Möller <bodo@openssl.org>
Sun, 9 May 1999 16:41:00 +0000 (16:41 +0000)
committerBodo Möller <bodo@openssl.org>
Sun, 9 May 1999 16:41:00 +0000 (16:41 +0000)
Submitted by:
Reviewed by:
PR:

ssl/ssl.h
ssl/ssl_locl.h

index 98f64c26eca036164ee653355729e5e3070059d0..9964b666aaa327558d0ca00b0d0703b949d99adc 100644 (file)
--- 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 */
index f9635d6a8dc1396c4cb1ca22c707639cd55167b8..4f3d56f0d3d68e598e37804b0febb9435f696a8c 100644 (file)
@@ -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;