In /etc/rc.conf, we recommand to use the -elo flags, but in fact, when we start identd from inetd, we only use -el.
This patch adds the -o flag to /etc/inetd.conf to match. --- /usr/src/etc/inetd.conf.orig Sat Mar 23 20:17:30 2013 +++ /usr/src/etc/inetd.conf Sat Mar 23 20:17:42 2013 @@ -12,8 +12,8 @@ #uucpd stream tcp6 nowait root /usr/libexec/uucpd uucpd #finger stream tcp nowait _fingerd /usr/libexec/fingerd fingerd -lsm #finger stream tcp6 nowait _fingerd /usr/libexec/fingerd fingerd -lsm -ident stream tcp nowait _identd /usr/libexec/identd identd -el -ident stream tcp6 nowait _identd /usr/libexec/identd identd -el +ident stream tcp nowait _identd /usr/libexec/identd identd -elo +ident stream tcp6 nowait _identd /usr/libexec/identd identd -elo 127.0.0.1:comsat dgram udp wait root /usr/libexec/comsat comsat [::1]:comsat dgram udp6 wait root /usr/libexec/comsat comsat #ntalk dgram udp wait root /usr/libexec/ntalkd ntalkd -- Creamy
