diff options
author | 2001-04-14 03:03:27 +0000 | |
---|---|---|
committer | 2001-04-14 03:03:27 +0000 | |
commit | a81a9fd578512767a919c8d48bcedbb65c6c0c5d (patch) | |
tree | 2fba8bb0f27a74d847f8f54d49023583ae03d062 | |
parent | Respect (absence of) "other" flag in all cases, and fix some whitespace. (diff) | |
download | wireguard-openbsd-a81a9fd578512767a919c8d48bcedbb65c6c0c5d.tar.xz wireguard-openbsd-a81a9fd578512767a919c8d48bcedbb65c6c0c5d.zip |
Remove the -o flag from identd's default invocation as it serves only to
obfuscate, and confuses some software.
derradt + millert concur.
-rw-r--r-- | etc/inetd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inetd.conf b/etc/inetd.conf index c9394118536..32144e65901 100644 --- a/etc/inetd.conf +++ b/etc/inetd.conf @@ -1,4 +1,4 @@ -# $OpenBSD: inetd.conf,v 1.39 2001/03/08 01:24:02 itojun Exp $ +# $OpenBSD: inetd.conf,v 1.40 2001/04/14 03:03:27 hugh Exp $ # # Internet server configuration database # @@ -16,8 +16,8 @@ #uucpd stream tcp nowait root /usr/libexec/uucpd uucpd #finger stream tcp nowait nobody /usr/libexec/fingerd fingerd -lsm #finger stream tcp6 nowait nobody /usr/libexec/fingerd fingerd -lsm -ident stream tcp nowait nobody /usr/libexec/identd identd -elo -ident stream tcp6 nowait nobody /usr/libexec/identd identd -elo +ident stream tcp nowait nobody /usr/libexec/identd identd -el +ident stream tcp6 nowait nobody /usr/libexec/identd identd -el #tftp dgram udp wait root /usr/libexec/tftpd tftpd -s /tftpboot comsat dgram udp wait root /usr/libexec/comsat comsat comsat dgram udp6 wait root /usr/libexec/comsat comsat |