aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/helper.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 53a5bcc..4c0d87d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-08-12 Miklos Szeredi <miklos@szeredi.hu>
+
+ * libfuse: added fuse_pkgversion() function to retrieve the full
+ version string, per autoconf. Patch by Christopher Harrison
+
2015-06-29 Miklos Szeredi <miklos@szeredi.hu>
* libfuse: fix possible memory leak. Reported by Jose R. Guzman
diff --git a/lib/helper.c b/lib/helper.c
index 2690334..bfdc990 100644
--- a/lib/helper.c
+++ b/lib/helper.c
@@ -334,5 +334,5 @@ int fuse_version(void)
const char *fuse_pkgversion(void)
{
- return PACKAGE_VERSION;
+ return PACKAGE_VERSION;
}