NetBSD/lib/libc/yp
christos 1d4349e7c8 ypset(8) stopped working; reason:
xdr_ypbind_setdom() would always fail because the test for
xdr_ypdomain_wrap_string() was reversed. Fixed this and in
the process made all the function tests to be of the form:

	if (!xdr_foo())
		return FALSE;
	....
	return TRUE;

instead of having some of them like above and others like:
	if (xdr_foo() == FALSE)
		return FALSE;
	...

	return xdr_bar();

this is more consistant now and hopefully in the future people
will pattern match correctly and not introduce spurious errors.
1996-06-18 20:05:59 +00:00
..
Makefile.inc Split yp_first, yp_next, yp_maplist and yperr_prot out of yplib.c. 1996-05-18 18:43:24 +00:00
xdryp.c ypset(8) stopped working; reason: 1996-06-18 20:05:59 +00:00
yp_all.c Pull down yp/xdr fixes from release branch. 1996-05-29 20:00:52 +00:00
yp_first.c Avoid using clnt_perror() on the first rpc failure, since it is going to be 1996-05-23 13:48:59 +00:00
yp_maplist.c Pull down yp/xdr fixes from release branch. 1996-05-29 20:00:52 +00:00
yp_master.c Avoid using clnt_perror() on the first rpc failure, since it is going to be 1996-05-23 13:48:59 +00:00
yp_match.c Avoid using clnt_perror() on the first rpc failure, since it is going to be 1996-05-23 13:48:59 +00:00
yp_order.c Avoid using clnt_perror() on the first rpc failure, since it is going to be 1996-05-23 13:48:59 +00:00
ypclnt.3 Copyright assigned to The NetBSD Foundation. 1996-02-28 00:47:42 +00:00
yperr_string.c Split yperr_string out of yplib.c; makes many static executables a bit smaller. 1996-05-14 13:36:49 +00:00
yplib.c Pull down yp/xdr fixes from release branch. 1996-05-29 20:00:52 +00:00
ypprot_err.c Split yp_first, yp_next, yp_maplist and yperr_prot out of yplib.c. 1996-05-18 19:06:39 +00:00