diff options
author | green <green@FreeBSD.org> | 1999-07-15 17:01:43 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 1999-07-15 17:01:43 +0000 |
commit | e18ab7089381828852704b64216c10877171c9ec (patch) | |
tree | 42b5c2340e3fbe862024ef886174e2590f0547dc /usr.sbin/inetd/Makefile | |
parent | edc82f2b819e4395a715e35e64582c165fa7acd9 (diff) | |
download | FreeBSD-src-e18ab7089381828852704b64216c10877171c9ec.zip FreeBSD-src-e18ab7089381828852704b64216c10877171c9ec.tar.gz |
By popular demand, ident_stream now takes arguments. Ex:
# This enables the old, fake ident service.
auth stream tcp nowait root internal
# This enables the new, real ident service.
auth stream tcp nowait root internal auth -r
# This enables ~/.fakeid support, too.
auth stream tcp nowait root internal auth -r -f
Diffstat (limited to 'usr.sbin/inetd/Makefile')
-rw-r--r-- | usr.sbin/inetd/Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/usr.sbin/inetd/Makefile b/usr.sbin/inetd/Makefile index d8434e7..91c09cc 100644 --- a/usr.sbin/inetd/Makefile +++ b/usr.sbin/inetd/Makefile @@ -7,12 +7,6 @@ MLINKS= inetd.8 inetd.conf.5 COPTS+= -Wall -DLOGIN_CAP #COPTS+= -DSANITY_CHECK -.ifdef REAL_IDENT -COPTS+= -DREAL_IDENT -.ifdef FAKEID -COPTS+= -DFAKEID -.endif -.endif DPADD+= ${LIBUTIL} ${LIBWRAP} LDADD+= -lutil -lwrap |