summaryrefslogtreecommitdiffstats
path: root/tools/fs_get_stats
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2013-02-20 12:43:51 -0800
committerNick Kralevich <nnk@google.com>2013-02-20 12:48:44 -0800
commitfa798096fd30873277965144ad72b21e2e1f5a82 (patch)
tree7a5c7b5b8122e48fc08694394887653de6f899de /tools/fs_get_stats
parentcdacb3780667bc8d51032d1fb9388ce10bebb9c3 (diff)
downloadbuild-fa798096fd30873277965144ad72b21e2e1f5a82.zip
build-fa798096fd30873277965144ad72b21e2e1f5a82.tar.gz
build-fa798096fd30873277965144ad72b21e2e1f5a82.tar.bz2
build: update fs_config calls for capabilities change.
Change-Id: Ic3c94f990c34a56d84f01c151f1b64f419e16419
Diffstat (limited to 'tools/fs_get_stats')
-rw-r--r--tools/fs_get_stats/fs_get_stats.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/fs_get_stats/fs_get_stats.c b/tools/fs_get_stats/fs_get_stats.c
index 356f6f9..a9814b9 100644
--- a/tools/fs_get_stats/fs_get_stats.c
+++ b/tools/fs_get_stats/fs_get_stats.c
@@ -57,7 +57,8 @@ main(int argc, const char *argv[])
if (!strcmp(argv[2], "1"))
is_dir = 1;
- fs_config(argv[3], is_dir, &uid, &gid, &perms);
+ uint64_t capabilities;
+ fs_config(argv[3], is_dir, &uid, &gid, &perms, &capabilities);
fprintf(stdout, "%d %d 0%o\n", uid, gid, perms);
return 0;