From b7f5f5cfbcea31caf8684d92eeb8acb47b6fff1b Mon Sep 17 00:00:00 2001 From: Bob Copeland Date: Fri, 29 Aug 2008 14:33:20 -0400 Subject: [PATCH] statvfs was not properly redirecting to the source path --- gstfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gstfs.c b/gstfs.c index 48b40d1..df4bdc5 100644 --- a/gstfs.c +++ b/gstfs.c @@ -154,7 +154,7 @@ int gstfs_statfs(const char *path, struct statvfs *buf) char *source_path; source_path = get_source_path(path); - if (statvfs(path, buf)) + if (statvfs(source_path, buf)) return -errno; g_free(source_path); -- 2.11.4.GIT