Commit 3da13fd6 authored by wm4's avatar wm4

avformat/tls_schannel: log unknown error codes

parent 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% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment