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:
e65bcbc
)
dtls1_write_bytes consumers expect amount of bytes written per call, not
author
Andy Polyakov
<appro@openssl.org>
Sun, 14 Sep 2008 17:56:15 +0000
(17:56 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Sun, 14 Sep 2008 17:56:15 +0000
(17:56 +0000)
overall.
PR: 1604
ssl/d1_pkt.c
patch
|
blob
|
history
diff --git
a/ssl/d1_pkt.c
b/ssl/d1_pkt.c
index eb3af232c7e719171138696b96d7e5fd6449a5d1..0321ee7f15ae2c4c7c3e0efa48511365f0381bb8 100644
(file)
--- a/
ssl/d1_pkt.c
+++ b/
ssl/d1_pkt.c
@@
-1294,7
+1294,7
@@
int dtls1_write_bytes(SSL *s, int type, const void *buf_, int len)
else
s->s3->wnum += i;
- return
tot +
i;
+ return i;
}
int do_dtls1_write(SSL *s, int type, const unsigned char *buf, unsigned int len, int create_empty_fragment)