Fix the services.byname target so that it creates search keys for the

aliases of the "official" names as well, because now that getportbyname()
does a yp match, it no longer found the entries under the alias.
This broke rsh(1), because it looks up "shell/tcp" while the official
name in /etc/services is "cmd/tcp".
This commit is contained in:
Peter Wemm 1996-07-25 19:32:37 +00:00
parent 74fa81dc52
commit 88b4ff3c6c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17288

View File

@ -1,7 +1,7 @@
#
# Makefile for the NIS databases
#
# $Id: Makefile.yp,v 1.9 1996/07/24 10:48:07 peter Exp $
# $Id: Makefile.yp,v 1.10 1996/07/24 14:04:57 peter Exp $
#
# This Makefile should only be run on the NIS master server of a domain.
# All updated maps will be pushed to all NIS slave servers listed in the
@ -369,9 +369,11 @@ services.byname: $(SERVICES)
@echo $@.$$$$ > $(NFILE)
$(CAT) $(SERVICES) | \
$(AWK) \
'$$1 !~ "#" { if (index($$2,"udp")) { printf("%s/udp",$$1) } \
else { printf("%s/tcp",$$1) }; print "\t"$$0 ; \
print $$2"\t"$$0 ; \
'$$1 !~ "#" { for (n=1; n<=NF && $$n !~ "#"; n++) { \
if (index($$2,"udp")) { printf("%s/udp",$$n) } \
else { printf("%s/tcp",$$n) }; print "\t"$$0 ; \
if (n == 1) n = 2; \
} ; print $$2"\t"$$0 ; \
}' $^ | $(DBLOAD) -i $(SERVICES) -o $(YPMAPDIR)/$@ - $(TMP)
@$(MV) $(TMP) $@
@$(DBLOAD) -c