diff options
Diffstat (limited to 'xlators/meta/src/version-file.c')
-rw-r--r-- | xlators/meta/src/version-file.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/xlators/meta/src/version-file.c b/xlators/meta/src/version-file.c index 77f2dea3d66..c402453ee96 100644 --- a/xlators/meta/src/version-file.c +++ b/xlators/meta/src/version-file.c @@ -26,21 +26,22 @@ static int version_file_fill (xlator_t *this, inode_t *file, strfd_t *strfd) { - strprintf (strfd, "%s\n", PACKAGE_VERSION); - return strfd->size; + strprintf (strfd, "{ \n \"Package Version\": \"%s\"\n}", + PACKAGE_VERSION); + return strfd->size; } static struct meta_ops version_file_ops = { - .file_fill = version_file_fill, + .file_fill = version_file_fill, }; int meta_version_file_hook (call_frame_t *frame, xlator_t *this, loc_t *loc, - dict_t *xdata) + dict_t *xdata) { - meta_ops_set (loc->inode, this, &version_file_ops); + meta_ops_set (loc->inode, this, &version_file_ops); - return 0; + return 0; } |