remove horrible pragma macro and remove __owur from SSL_CTX_add_session() declaration
authorLingmo Zhu <zlm2006@gmail.com>
Wed, 2 Aug 2017 12:55:40 +0000 (20:55 +0800)
committerMatt Caswell <matt@openssl.org>
Thu, 3 Aug 2017 09:14:46 +0000 (10:14 +0100)
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4014)

include/openssl/ssl.h
ssl/ssl_sess.c

index c6349378c308feb293d34a3d859546517368f857..245f5eb172cfc3ae095bfd7c6a75e623b5994f91 100644 (file)
@@ -1559,7 +1559,7 @@ int SSL_SESSION_up_ref(SSL_SESSION *ses);
 void SSL_SESSION_free(SSL_SESSION *ses);
 __owur int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp);
 __owur int SSL_set_session(SSL *to, SSL_SESSION *session);
-__owur int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
+int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
 int SSL_CTX_remove_session(SSL_CTX *, SSL_SESSION *c);
 __owur int SSL_CTX_set_generate_session_id(SSL_CTX *, GEN_SESSION_CB);
 __owur int SSL_set_generate_session_id(SSL *, GEN_SESSION_CB);
index a291ead92aaf21dc344bb3685ccfe02d4c82018b..805a3d75f4579a0d421f0574404ea5d2905311a7 100644 (file)
@@ -549,10 +549,7 @@ int ssl_get_prev_session(SSL *s, CLIENTHELLO_MSG *hello, int *al)
                  * interrupt the session resumption process. The return
                  * value is intentionally ignored.
                  */
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wunused-result"
                 SSL_CTX_add_session(s->session_ctx, ret);
-#pragma GCC diagnostic pop
             }
         }
     }