mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
[BZ #1925]
2005-11-25 Ulrich Drepper <drepper@redhat.com> [BZ #1925] * nis/ypclnt.c (yp_order): Correct test for invalid parameter.
This commit is contained in:
parent
9b33781cad
commit
85f90d22b6
@ -1,3 +1,8 @@
|
|||||||
|
2005-11-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #1925]
|
||||||
|
* nis/ypclnt.c (yp_order): Correct test for invalid parameter.
|
||||||
|
|
||||||
2005-11-24 Ulrich Drepper <drepper@redhat.com>
|
2005-11-24 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* scripts/check-c++-types.sh: Improve comments.
|
* scripts/check-c++-types.sh: Improve comments.
|
||||||
|
@ -593,7 +593,7 @@ yp_order (const char *indomain, const char *inmap, unsigned int *outorder)
|
|||||||
enum clnt_stat result;
|
enum clnt_stat result;
|
||||||
|
|
||||||
if (indomain == NULL || indomain[0] == '\0' ||
|
if (indomain == NULL || indomain[0] == '\0' ||
|
||||||
inmap == NULL || inmap == '\0')
|
inmap == NULL || inmap[0] == '\0')
|
||||||
return YPERR_BADARGS;
|
return YPERR_BADARGS;
|
||||||
|
|
||||||
req.domain = (char *) indomain;
|
req.domain = (char *) indomain;
|
||||||
|
Loading…
Reference in New Issue
Block a user