> inetd[117]: IPv6 for  RPC is not supported yet

Sorry, there is my buggy incorrect error check.
Please apply following patch to use RPC services for now.

Yoshinobu Inoue

Index: inetd.c
===================================================================
RCS file: /home/ncvs/src/usr.sbin/inetd/inetd.c,v
retrieving revision 1.77
diff -u -r1.77 inetd.c
--- inetd.c     2000/01/28 20:06:15     1.77
+++ inetd.c     2000/02/01 15:11:35
@@ -1522,8 +1522,9 @@
        } else
                sep->se_proto = newstr(arg);
         if (strncmp(sep->se_proto, "rpc/", 4) == 0) {
-               if (sep->se_family != AF_INET) {
-                       syslog(LOG_ERR, "IPv6 for RPC is not supported yet");
+               if (no_v4bind != 0) {
+                       syslog(LOG_INFO, "IPv4 bind is ignored for %s",
+                              sep->se_service);
                        freeconfig(sep);
                        goto more;
                }



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to