From: Rob Stradling Date: Tue, 10 Sep 2013 11:45:34 +0000 (+0100) Subject: Tidy up comments. X-Git-Tag: OpenSSL_0_9_8za~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4bfeff254bb7a7243b4e0277b3818a5b9732285;p=openssl Tidy up comments. --- diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index bdfb26db20..531063679d 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -1737,8 +1737,8 @@ void ssl3_clear(SSL *s) #ifndef OPENSSL_NO_TLSEXT #ifndef OPENSSL_NO_EC s->s3->is_probably_safari = 0; -#endif /* OPENSSL_NO_EC */ -#endif /* OPENSSL_NO_TLSEXT */ +#endif /* !OPENSSL_NO_EC */ +#endif /* !OPENSSL_NO_TLSEXT */ rp = s->s3->rbuf.buf; wp = s->s3->wbuf.buf; diff --git a/ssl/ssl3.h b/ssl/ssl3.h index 4cc063821a..2a83a2ad21 100644 --- a/ssl/ssl3.h +++ b/ssl/ssl3.h @@ -467,8 +467,8 @@ typedef struct ssl3_state_st * running on OS X 10.6 or newer. We wish to know this because Safari * on 10.8 .. 10.8.3 has broken ECDHE-ECDSA support. */ char is_probably_safari; -#endif /* OPENSSL_NO_EC */ -#endif /* OPENSSL_NO_TLSEXT */ +#endif /* !OPENSSL_NO_EC */ +#endif /* !OPENSSL_NO_TLSEXT */ } SSL3_STATE; diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 98e86bff98..09b06a5af7 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -425,7 +425,7 @@ static void ssl_check_for_safari(SSL *s, const unsigned char *data, const unsign s->s3->is_probably_safari = 1; } -#endif /* OPENSSL_NO_EC */ +#endif /* !OPENSSL_NO_EC */ int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char *d, int n, int *al) { @@ -441,7 +441,7 @@ int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char *d, in #ifndef OPENSSL_NO_EC if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG) ssl_check_for_safari(s, data, d, n); -#endif /* OPENSSL_NO_EC */ +#endif /* !OPENSSL_NO_EC */ if (data >= (d+n-2)) goto ri_check;