summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ypbind
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>1997-10-09 20:29:39 +0000
committerwpaul <wpaul@FreeBSD.org>1997-10-09 20:29:39 +0000
commit8361cef2bae54a6f5144dac924362c4121d44318 (patch)
tree90771229924de5ed01c1ca943a4689aa29f4fbe6 /usr.sbin/ypbind
parent0145bd0653537c123c026806c8bd7c83575d0947 (diff)
downloadFreeBSD-src-8361cef2bae54a6f5144dac924362c4121d44318.zip
FreeBSD-src-8361cef2bae54a6f5144dac924362c4121d44318.tar.gz
Fix bug in __yp_ping(): keep proper count of assigned request structures.
The test to see if a request struct had been assigned after looping though the server list was bogus. Submitted by: "Erik E. Rantapaa" <rantapaa@math.umn.edu>
Diffstat (limited to 'usr.sbin/ypbind')
-rw-r--r--usr.sbin/ypbind/yp_ping.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/ypbind/yp_ping.c b/usr.sbin/ypbind/yp_ping.c
index b9386cb..31df5b8 100644
--- a/usr.sbin/ypbind/yp_ping.c
+++ b/usr.sbin/ypbind/yp_ping.c
@@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: yp_ping.c,v 1.2 1997/05/25 18:54:11 wpaul Exp wpaul $
+ * $Id: yp_ping.c,v 1.1 1997/05/25 19:49:29 wpaul Exp $
*/
/*
@@ -71,7 +71,7 @@
#ifndef lint
/*static char *sccsid = "from: @(#)clnt_udp.c 1.39 87/08/11 Copyr 1984 Sun Micro";*/
/*static char *sccsid = "from: @(#)clnt_udp.c 2.2 88/08/01 4.0 RPCSRC";*/
-static const char rcsid[] = "@(#) $Id: yp_ping.c,v 1.2 1997/05/25 18:54:11 wpaul Exp wpaul $";
+static const char rcsid[] = "@(#) $Id: yp_ping.c,v 1.1 1997/05/25 19:49:29 wpaul Exp $";
#endif
/*
@@ -458,6 +458,7 @@ int __yp_ping(restricted_addrs, cnt, dom, port)
char *foo = dom;
struct cu_data *cu;
enum clnt_stat (*oldfunc)();
+ int validsrvs = 0;
/* Set up handles. */
reqs = calloc(1, sizeof(struct ping_req *) * cnt);
@@ -477,10 +478,11 @@ int __yp_ping(restricted_addrs, cnt, dom, port)
any = &reqs[i]->sin;
reqs[i]->xid = xid_seed;
xid_seed++;
+ validsrvs++;
}
/* Make sure at least one server was assigned */
- if (reqs[0] == NULL) {
+ if (!validsrvs) {
free(reqs);
return(-1);
}
OpenPOWER on IntegriCloud