Browse Source

avformat/tls_schannel: log unknown error codes

tags/n3.4
wm4 8 years ago
parent
commit
3da13fd6ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/tls_schannel.c

+ 1
- 1
libavformat/tls_schannel.c View File

@@ -494,7 +494,7 @@ static int tls_read(URLContext *h, uint8_t *buf, int len)
ret = AVERROR(EAGAIN);
goto cleanup;
} 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);
goto cleanup;
}


Loading…
Cancel
Save