Version in base suite: 2.17-1 Base version: ffmpegfs_2.17-1 Target version: ffmpegfs_2.17-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/f/ffmpegfs/ffmpegfs_2.17-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/f/ffmpegfs/ffmpegfs_2.17-1+deb13u1.dsc changelog | 9 ++ patches/0031-Issue-173-Fix-list-of-files-in-output-directory-whic.patch | 32 ++++++++++ patches/series | 1 3 files changed, 42 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmppr325f1s/ffmpegfs_2.17-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmppr325f1s/ffmpegfs_2.17-1+deb13u1.dsc: no acceptable signature found diff -Nru ffmpegfs-2.17/debian/changelog ffmpegfs-2.17/debian/changelog --- ffmpegfs-2.17/debian/changelog 2024-11-22 15:43:59.000000000 +0000 +++ ffmpegfs-2.17/debian/changelog 2026-01-12 15:08:41.000000000 +0000 @@ -1,3 +1,12 @@ +ffmpegfs (2.17-1+deb13u1) trixie; urgency=medium + + * Non-maintainer upload with maintainer's approval. + * Backport commit from upstream to fix list of files in output + directory which was incomplete + (https://github.com/nschlia/ffmpegfs/commit/5581dad) + + -- Fabian Greffrath Mon, 12 Jan 2026 16:08:41 +0100 + ffmpegfs (2.17-1) unstable; urgency=medium * Bugfix: Issue #164: Fixed incorrectly discarded HLS seek requests. diff -Nru ffmpegfs-2.17/debian/patches/0031-Issue-173-Fix-list-of-files-in-output-directory-whic.patch ffmpegfs-2.17/debian/patches/0031-Issue-173-Fix-list-of-files-in-output-directory-whic.patch --- ffmpegfs-2.17/debian/patches/0031-Issue-173-Fix-list-of-files-in-output-directory-whic.patch 1970-01-01 00:00:00.000000000 +0000 +++ ffmpegfs-2.17/debian/patches/0031-Issue-173-Fix-list-of-files-in-output-directory-whic.patch 2026-01-12 15:08:17.000000000 +0000 @@ -0,0 +1,32 @@ +From 5581dadf0e315cbf332a8ca1089bbeca07af79db Mon Sep 17 00:00:00 2001 +From: Norbert Schlia +Date: Thu, 4 Dec 2025 11:49:47 +0100 +Subject: [PATCH 31/40] Issue #173: Fix list of files in output directory which + was incomplete + +--- + NEWS | 2 ++ + README.md | 1 + + src/fuseops.cc | 5 +++-- + 3 files changed, 6 insertions(+), 2 deletions(-) + +--- a/src/fuseops.cc ++++ b/src/fuseops.cc +@@ -2403,14 +2403,15 @@ static const FFmpegfs_Format * get_forma + return nullptr; + } + +-int add_fuse_entry(void *buf, fuse_fill_dir_t filler, const std::string & name, const struct stat *stbuf, off_t off) ++int add_fuse_entry(void *buf, fuse_fill_dir_t filler, const std::string & name, const struct stat *stbuf, off_t /*off*/) + { + if (buf == nullptr || filler == nullptr) + { + return 0; + } + +- return filler(buf, name.c_str(), stbuf, off, FUSE_FILL_DIR_PLUS); ++ // Issue #173: FUSE_FILL_DIR_PLUS erstmal NICHT nutzen ++ return filler(buf, name.c_str(), stbuf, 0, static_cast(0)); + } + + int add_dotdot(void *buf, fuse_fill_dir_t filler, const struct stat *stbuf, off_t off) diff -Nru ffmpegfs-2.17/debian/patches/series ffmpegfs-2.17/debian/patches/series --- ffmpegfs-2.17/debian/patches/series 2023-06-25 14:11:38.000000000 +0000 +++ ffmpegfs-2.17/debian/patches/series 2026-01-12 15:08:07.000000000 +0000 @@ -0,0 +1 @@ +0031-Issue-173-Fix-list-of-files-in-output-directory-whic.patch