Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-04-14 22:10:32 +0300
committerAdam Langley <agl@google.com>2015-04-16 03:16:20 +0300
commitd5eb7f4268359415de0243050e69d7dbd1329919 (patch)
tree45b93db99a5e86101eac68fab9022011aa2bc653 /crypto/bio
parent9f33fc63c6219dd43db438d2ffaca480f1b4bb5d (diff)
bio: remove BIO_CTRL_PUSH/_POP.
We don't support the SSL BIO so this is a no-op change. Change-Id: Iba9522b837ebb0eb6adc80d5df6dcac99abf2552 Reviewed-on: https://boringssl-review.googlesource.com/4360 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bio.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/crypto/bio/bio.c b/crypto/bio/bio.c
index b1e79dcc..ad6c259b 100644
--- a/crypto/bio/bio.c
+++ b/crypto/bio/bio.c
@@ -381,10 +381,6 @@ BIO *BIO_push(BIO *bio, BIO *appended_bio) {
}
last_bio->next_bio = appended_bio;
- /* TODO(fork): this seems very suspect. If we got rid of BIO SSL, we could
- * get rid of this. */
- BIO_ctrl(bio, BIO_CTRL_PUSH, 0, bio);
-
return bio;
}
@@ -395,7 +391,6 @@ BIO *BIO_pop(BIO *bio) {
return NULL;
}
ret = bio->next_bio;
- BIO_ctrl(bio, BIO_CTRL_POP, 0, bio);
bio->next_bio = NULL;
return ret;
}