+nfs-utils (1:1.0.10-6~quilt.7) experimental; urgency=low
+
+ * 10-ccachedir-off-by-one.patch: Fixes an off-by-one in the parsing of the
+ -d option to rpc.gssd; patch from Liam Bedford, extracted from the Ubuntu
+ BTS.
+
+ -- Steinar H. Gunderson <sesse@debian.org> Thu, 4 Jan 2007 20:40:49 +0100
+
nfs-utils (1:1.0.10-6~quilt.6) experimental; urgency=low
* Make build depend on "patch build-stamp", not "build-stamp patch", which
--- /dev/null
+Index: nfs-utils-1.0.10/utils/gssd/gssd.c
+===================================================================
+--- nfs-utils-1.0.10.orig/utils/gssd/gssd.c
++++ nfs-utils-1.0.10/utils/gssd/gssd.c
+@@ -118,7 +118,7 @@ main(int argc, char *argv[])
+ break;
+ case 'd':
+ strncpy(ccachedir, optarg, sizeof(ccachedir));
+- if (ccachedir[sizeof(ccachedir-1)] != '\0')
++ if (ccachedir[sizeof(ccachedir)-1] != '\0')
+ errx(1, "ccachedir path name too long");
+ break;
+ default:
07-exports-default-options.patch
08-dont-build-getkversion.patch
09-manpage-paths-fixup.patch
+10-ccachedir-off-by-one.patch