-
Notifications
You must be signed in to change notification settings - Fork 70
Update BoringSSL to 2023-08-28. #391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fixes build warning-as-error: ``` external/boringssl/src/crypto/x509/t_x509.c:326:18: error: variable 'l' set but not used [-Werror,-Wunused-but-set-variable] int ret = 0, l, i; ^ ``` Signed-off-by: Martijn Stevenson <[email protected]>
Signed-off-by: Martijn Stevenson <[email protected]>
|
Friendly ping @PiotrSikora |
LGTM, but those should be 2 separate PRs. |
Sorry, not sure what you mean, this is a minimal PR. I think you're talking about macOS and cargo-raze issues? Yes, those are being addressed separately. Can we get this merged despite the pre-existing CI issues? Or if you're talking about the buildifier fix, that was a presubmit identified issue and fixing it is trivial and safe. |
This. I agree that it's trivial and safe, but there is no reason to bundle those 2 unrelated changes into a single PR. |
Split the BUILD fix to #394, PTAL @PiotrSikora |
Signed-off-by: Martijn Stevenson <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, although the fact that we're updating to a version from 8 months ago is a bit questionable.
@martijneken sorry, I keep forgetting that for some reason GitHub decides to use my old |
@PiotrSikora I'm confused why your review is not considered a sufficient Code Owner review. Maybe because you added a merge commit? BTW this triggered a CLA check issue -- are you able to resolve that? |
197ed0b
to
70af61f
Compare
That's not it, see: #392 (comment)
Done... But could you merge the |
Fixes build warning-as-error: