[FFmpeg-cvslog] lavf/libssh: fix file mode

Lukasz Marek git at videolan.org
Sun Dec 29 21:18:55 CET 2013


ffmpeg | branch: master | Lukasz Marek <lukasz.m.luki at gmail.com> | Sat Dec 28 19:33:21 2013 +0100| [247a8fa70f9d7f1cf47ff28c10b4569ff9c4c6a9] | committer: Lukasz Marek

lavf/libssh: fix file mode

Signed-off-by: Lukasz Marek <lukasz.m.luki at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=247a8fa70f9d7f1cf47ff28c10b4569ff9c4c6a9
---

 libavformat/libssh.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/libssh.c b/libavformat/libssh.c
index 4a9b867..e4d4267 100644
--- a/libavformat/libssh.c
+++ b/libavformat/libssh.c
@@ -121,7 +121,8 @@ static int libssh_open(URLContext *h, const char *url, int flags)
         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));
         ret = AVERROR(EIO);
         goto fail;



More information about the ffmpeg-cvslog mailing list