projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
88c2303
)
Remove unneccessary use of accessor function now code is moved into record
author
Matt Caswell
<matt@openssl.org>
Mon, 2 Feb 2015 16:14:03 +0000
(16:14 +0000)
committer
Matt Caswell
<matt@openssl.org>
Thu, 26 Mar 2015 15:02:00 +0000
(15:02 +0000)
layer
Reviewed-by: Richard Levitte <levitte@openssl.org>
ssl/record/s3_pkt.c
patch
|
blob
|
history
diff --git
a/ssl/record/s3_pkt.c
b/ssl/record/s3_pkt.c
index 8b360d63825f284c2b0b7c0cd07feb346fa000f1..b082c037e0131f17d16997fd05ba20ada393aeb9 100644
(file)
--- a/
ssl/record/s3_pkt.c
+++ b/
ssl/record/s3_pkt.c
@@
-306,7
+306,7
@@
int ssl3_read_n(SSL *s, int n, int max, int extend)
}
/* We always act like read_ahead is set for DTLS */
- if (
!RECORD_LAYER_get_read_ahead(&s->rlayer)
&& !SSL_IS_DTLS(s))
+ if (
&s->rlayer.read_ahead
&& !SSL_IS_DTLS(s))
/* ignore max parameter */
max = n;
else {