+nfs-utils (1:1.0.9-10) unstable; urgency=low
+
+ * The -n option (short option for --no-tcp) to rpc.mountd was set
+ to take a parameter, even though --no-tcp doesn't take any, the
+ parameter is never used and the help doesn't mention any. Remove
+ the colon after 'n' in the getopt string to fix it.
+ * Add a versioned dependency from nfs-common to libnfsidmap1 (>= 0.16-3)
+ temporarily, to work around #384688.
+
+ -- Steinar H. Gunderson <sesse@debian.org> Sat, 26 Aug 2006 03:29:09 +0200
+
nfs-utils (1:1.0.9-9) unstable; urgency=medium
* Patched svc_socket.c to define __bzero only on ia64.
Package: nfs-common
Architecture: any
-Depends: portmap, sysvinit (>= 2.80-1), adduser, ucf, lsb-base (>= 1.3-9ubuntu3), ${shlibs:Depends}
+Depends: portmap, sysvinit (>= 2.80-1), adduser, ucf, lsb-base (>= 1.3-9ubuntu3), ${shlibs:Depends}, libnfsidmap1 (>= 0.16-3)
Provides: nfs-client
Conflicts: nfs-client
Replaces: nfs-client, nfs-kernel-server (<< 1:1.0.7-5)
/* Parse the command line options and arguments. */
opterr = 0;
- while ((c = getopt_long(argc, argv, "o:n:Fd:f:p:P:hH:N:V:vs:t:", longopts, NULL)) != EOF)
+ while ((c = getopt_long(argc, argv, "o:nFd:f:p:P:hH:N:V:vs:t:", longopts, NULL)) != EOF)
switch (c) {
case 'o':
descriptors = atoi(optarg);