From c8b8162e7169d773c7616e5bb2330ad0225f3394 Mon Sep 17 00:00:00 2001 From: deraadt Date: Thu, 30 Jan 1997 18:26:55 +0000 Subject: avoid being too paranoid... make it work! --- usr.sbin/ypbind/ypbind.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'usr.sbin/ypbind') diff --git a/usr.sbin/ypbind/ypbind.c b/usr.sbin/ypbind/ypbind.c index ce154b3cc73..f235f92bdb2 100644 --- a/usr.sbin/ypbind/ypbind.c +++ b/usr.sbin/ypbind/ypbind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ypbind.c,v 1.18 1997/01/30 07:47:29 deraadt Exp $ */ +/* $OpenBSD: ypbind.c,v 1.19 1997/01/30 18:26:55 deraadt Exp $ */ /* * Copyright (c) 1996 Theo de Raadt @@ -34,7 +34,7 @@ */ #ifndef LINT -static char rcsid[] = "$OpenBSD: ypbind.c,v 1.18 1997/01/30 07:47:29 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: ypbind.c,v 1.19 1997/01/30 18:26:55 deraadt Exp $"; #endif #include @@ -156,7 +156,7 @@ ypbindproc_domain_2x(transp, argp, clnt) char path[MAXPATHLEN]; time_t now; - if (strchr((char *)argp, '/') || strchr((char *)argp, '.')) + if (strchr((char *)argp, '/')) return NULL; memset(&res, 0, sizeof res); @@ -495,7 +495,7 @@ main(argc, argv) rmtcr.xdr_results = xdr_bool; rmtcr.results_ptr = (caddr_t)&rmtcr_outval; - if (strchr(domain, '/') || strchr(domain, '.')) + if (strchr(domain, '/')) errx(1, "bad domainname %s", domain); /* build initial domain binding, make it "unsuccessful" */ @@ -984,7 +984,7 @@ int force; char path[MAXPATHLEN]; int fd; - if (strchr(dom, '/') || strchr(dom, '.')) + if (strchr(dom, '/')) return; #ifdef DEBUG -- cgit v1.2.3-59-g8ed1b