You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@trafficserver.apache.org by "maskit (via GitHub)" <gi...@apache.org> on 2023/03/16 07:10:01 UTC

[GitHub] [trafficserver] maskit commented on a diff in pull request #9525: Fix compile warning on BoringSSL build

maskit commented on code in PR #9525:
URL: https://github.com/apache/trafficserver/pull/9525#discussion_r1138210565


##########
iocore/net/OCSPStapling.cc:
##########
@@ -130,7 +130,7 @@ stapling_get_issuer(SSL_CTX *ssl_ctx, X509 *x)
     goto end;
   }
 
-  for (int i = 0; i < sk_X509_num(extra_certs); i++) {
+  for (int i = 0; i < static_cast<int>(sk_X509_num(extra_certs)); i++) {

Review Comment:
   https://godbolt.org/z/GPTGacGGc
   
   You like to do things in inconsistent ways?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@trafficserver.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org