New version: 1.9.3
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 20 Mar 2014 01:12:45 +0000 (18:12 -0700)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 20 Mar 2014 01:12:45 +0000 (18:12 -0700)
 Wed Mar 19 2014: Version 1.9.3
 - Add O_TRUNC support to nfs_open()
 - Add a simple but incomplete LD_PRELOAD tool
 - Fixes for some memory leaks and C++ compile support
 - Make ANDROID default uid/gid to 65534
 - Allow the READDIRPLUS emulation to still work if some objects
   in the direcotry can not be lookedup (NFSv4 ACL denying READ-ATTRIBUTES)
 - Have libnfs retry any read/write operations where the server responds
   with a short read/write. Some servers do this when they are overloaded?

configure.ac
lib/Makefile.am
packaging/RPM/libnfs.spec.in

index d71a22af7cfb653b77a0a2333b3e541ca0d6e44a..c52a370c6ddef05837245506d84aaa3c2634bd8b 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ(2.50)
-AC_INIT([libnfs], [1.9.2], [ronniesahlberg@gmail.com])
+AC_INIT([libnfs], [1.9.3], [ronniesahlberg@gmail.com])
 AC_CONFIG_HEADERS([config.h])
 AM_INIT_AUTOMAKE([foreign])
 AC_CANONICAL_HOST
index de664a798bc27701c9077bdc767099b070d73d1f..aa0855f76c5e3b34b7cb0505bc072c4e89e5c75f 100644 (file)
@@ -18,9 +18,9 @@ libnfs_la_SOURCES = \
        pdu.c \
        socket.c
 
-SOCURRENT=3
-SOREVISION=1
-SOAGE=2
+SOCURRENT=4
+SOREVISION=0
+SOAGE=0
 libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE)
 libnfs_la_LIBADD = \
        ../mount/libmount.la \
index 65d94ea4485f40005bf1469a7784f686c0097c62..98acdbc4d1df71eaf01bd508fd5c9c0aca15773f 100644 (file)
@@ -96,6 +96,15 @@ development libraries for LibNFS
 %{_libdir}/pkgconfig/libnfs.pc
 
 %changelog
+* Wed Mar 19 2014: Version 1.9.3
+ - Add O_TRUNC support to nfs_open()
+ - Add a simple but incomplete LD_PRELOAD tool
+ - Fixes for some memory leaks and C++ compile support
+ - Make ANDROID default uid/gid to 65534
+ - Allow the READDIRPLUS emulation to still work if some objects
+   in the direcotry can not be lookedup (NFSv4 ACL denying READ-ATTRIBUTES)
+ - Have libnfs retry any read/write operations where the server responds
+   with a short read/write. Some servers do this when they are overloaded?
 * Thu Jan 30 2014 : Version 1.9.2
  - Remove chdir change. This needs more testing.
 * Tue Jan 28 2014 : Version 1.9.1