kern/96242: rpcbind ignores NO_INET6=yes in make.conf

Alex Kozlov spam at rm-rf.kiev.ua
Mon Apr 24 03:53:01 UTC 2006


On Sun, Apr 23, 2006 at 08:36:56PM -0700, Jeremy Chadwick wrote:
> On Mon, Apr 24, 2006 at 06:10:50AM +0300, Alex Kozlov wrote:
> > It harmless. 
> > But if you wish, you can comment udp6/tcp6 lines in /etc/netconfig
> 
> Hey, thanks for this!  That totally fixed the problem.  Surprisingly,
> until now, I'd never heard of that file...
Plain, old TI-RPC ')

> 
> Again, thanks!
This is quick and dirty fix.
In more propper way you may want apply this patch:

--- rpcbind.c	Sun Nov  7 06:32:51 2004
+++ rpcbind.c.new	Mon Apr 24 06:42:19 2006
@@ -173,7 +173,12 @@
 	init_transport(nconf);
 
 	while ((nconf = getnetconfig(nc_handle))) {
+#ifdef INET6
 		if (nconf->nc_flag & NC_VISIBLE)
+#else
+		if (nconf->nc_flag & NC_VISIBLE &&
+					   nconf->nc_protofmly !=NC_INET6 )
+#endif
 			init_transport(nconf);
 	}
 	endnetconfig(nc_handle);

--
Adios


More information about the freebsd-bugs mailing list