Commit 247a8fa7 authored by Lukasz Marek's avatar Lukasz Marek

lavf/libssh: fix file mode

Signed-off-by: 's avatarLukasz Marek <lukasz.m.luki@gmail.com>
parent 8a0d446a
...@@ -121,7 +121,8 @@ static int libssh_open(URLContext *h, const char *url, int flags) ...@@ -121,7 +121,8 @@ static int libssh_open(URLContext *h, const char *url, int flags)
access = O_RDONLY; access = O_RDONLY;
} }
if (!(s->file = sftp_open(s->sftp, path, access, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH))) { /* 0666 = -rw-rw-rw- = read+write for everyone, minus umask */
if (!(s->file = sftp_open(s->sftp, path, access, 0666))) {
av_log(h, AV_LOG_ERROR, "Error opening sftp file: %s\n", ssh_get_error(s->session)); av_log(h, AV_LOG_ERROR, "Error opening sftp file: %s\n", ssh_get_error(s->session));
ret = AVERROR(EIO); ret = AVERROR(EIO);
goto fail; goto fail;
......
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