diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-02-15 23:23:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-02-15 23:23:43 +0000 |
commit | f565518e7e393419f99457792971ce71215d02cc (patch) | |
tree | 966af86b2d431aace9e6d39cf2d3a695535091d3 /nis | |
parent | 64ea8bea1c4ba326e9368c477662ec54b345c73b (diff) | |
download | glibc-f565518e7e393419f99457792971ce71215d02cc.tar glibc-f565518e7e393419f99457792971ce71215d02cc.tar.gz glibc-f565518e7e393419f99457792971ce71215d02cc.tar.bz2 glibc-f565518e7e393419f99457792971ce71215d02cc.zip |
Update.
1998-02-15 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
* nis/ypclnt.c (yp_all): Remove error message, user should print it.
Diffstat (limited to 'nis')
-rw-r--r-- | nis/ypclnt.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nis/ypclnt.c b/nis/ypclnt.c index a20d4926aa..f67a8f8b86 100644 --- a/nis/ypclnt.c +++ b/nis/ypclnt.c @@ -680,10 +680,7 @@ yp_all (const char *indomain, const char *inmap, clnt_sin.sin_port = 0; clnt = clnttcp_create (&clnt_sin, YPPROG, YPVERS, &clnt_sock, 0, 0); if (clnt == NULL) - { - puts (_("yp_all: clnttcp_create failed")); - return YPERR_PMAP; - } + return YPERR_PMAP; req.domain = (char *) indomain; req.map = (char *) inmap; |