summaryrefslogtreecommitdiffstats
path: root/xlators/features/changelog/src/changelog-helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/features/changelog/src/changelog-helpers.c')
-rw-r--r--xlators/features/changelog/src/changelog-helpers.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/xlators/features/changelog/src/changelog-helpers.c b/xlators/features/changelog/src/changelog-helpers.c
index 17c085fe047..bfe7a17a87e 100644
--- a/xlators/features/changelog/src/changelog-helpers.c
+++ b/xlators/features/changelog/src/changelog-helpers.c
@@ -356,6 +356,8 @@ cl_is_empty (xlator_t *this, int fd)
int encoding = -1;
char buffer[1024] = {0,};
struct stat stbuf = {0,};
+ int major_version = -1;
+ int minor_version = -1;
ret = fstat (fd, &stbuf);
if (ret) {
@@ -371,7 +373,8 @@ cl_is_empty (xlator_t *this, int fd)
goto out;
}
- CHANGELOG_GET_ENCODING (fd, buffer, 1024, encoding, elen);
+ CHANGELOG_GET_HEADER_INFO (fd, buffer, 1024, encoding,
+ major_version, minor_version, elen);
if (elen == stbuf.st_size) {
ret = 1;