extmod/modussl_axtls: Typo fix in comment.

This commit is contained in:
Paul Sokolovsky 2017-11-02 00:16:03 +02:00
parent 0719c936fb
commit 1cf6d488b3
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ STATIC mp_uint_t socket_read(mp_obj_t o_in, void *buf, mp_uint_t size, int *errc
mp_int_t r = ssl_read(o->ssl_sock, &o->buf);
if (r == SSL_OK) {
// SSL_OK from ssl_read() means "everything is ok, but there's
// not user data yet. So, we just keep reading.
// no user data yet". So, we just keep reading.
continue;
}
if (r < 0) {