提交 3da13fd6 编写于 作者: W wm4

avformat/tls_schannel: log unknown error codes

上级 01602303
...@@ -494,7 +494,7 @@ static int tls_read(URLContext *h, uint8_t *buf, int len) ...@@ -494,7 +494,7 @@ static int tls_read(URLContext *h, uint8_t *buf, int len)
ret = AVERROR(EAGAIN); ret = AVERROR(EAGAIN);
goto cleanup; goto cleanup;
} else { } else {
av_log(h, AV_LOG_ERROR, "Unable to decrypt message\n"); av_log(h, AV_LOG_ERROR, "Unable to decrypt message (error 0x%x)\n", (unsigned)sspi_ret);
ret = AVERROR(EIO); ret = AVERROR(EIO);
goto cleanup; goto cleanup;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册