diff options
author | Martin Storsjö <martin@martin.st> | 2011-11-07 11:19:17 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-11-08 22:58:54 +0200 |
commit | f38f3b88a5a74d0573dc299a512a87f6d579323b (patch) | |
tree | e156a8cf691ee6dd67f0ae3b94c36f75db1f1a35 /libavformat/tls.c | |
parent | 1149fbc7631a8c2258386f9aa247806715493b10 (diff) | |
download | ffmpeg-f38f3b88a5a74d0573dc299a512a87f6d579323b.tar.gz |
tls: Use ERR_get_error() in do_tls_poll
The return value ret isn't an error code that can be passed
to ERR_error_string().
This makes the error messages printed actually contain useful
information.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/tls.c')
-rw-r--r-- | libavformat/tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tls.c b/libavformat/tls.c index 85bf46f903..bd73febd4d 100644 --- a/libavformat/tls.c +++ b/libavformat/tls.c @@ -87,7 +87,7 @@ static int do_tls_poll(URLContext *h, int ret) } else if (ret == SSL_ERROR_WANT_WRITE) { p.events = POLLOUT; } else { - av_log(NULL, AV_LOG_ERROR, "%s\n", ERR_error_string(ret, NULL)); + av_log(NULL, AV_LOG_ERROR, "%s\n", ERR_error_string(ERR_get_error(), NULL)); return AVERROR(EIO); } #endif |