diff options
author | dd <dd@FreeBSD.org> | 2001-07-24 12:33:08 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-07-24 12:33:08 +0000 |
commit | 44bf20e1b6abc4a2e0c3c8fe607245c250da62e6 (patch) | |
tree | a30bfd6c2a61d5142d4c2cf6780e8cfd41cc4ebb /libexec/ypxfr | |
parent | 45eda4d16119d28dc8617699e96e36534479b19f (diff) | |
download | FreeBSD-src-44bf20e1b6abc4a2e0c3c8fe607245c250da62e6.zip FreeBSD-src-44bf20e1b6abc4a2e0c3c8fe607245c250da62e6.tar.gz |
yp_errno is an `enum ypstat`.
PR: 29190
Submitted by: Cristan Szmajda <cristan@unsw.edu.au>
Reviewed by: md5(1)
Diffstat (limited to 'libexec/ypxfr')
-rw-r--r-- | libexec/ypxfr/ypxfr_getmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/ypxfr/ypxfr_getmap.c b/libexec/ypxfr/ypxfr_getmap.c index 085d631..31a0e58 100644 --- a/libexec/ypxfr/ypxfr_getmap.c +++ b/libexec/ypxfr/ypxfr_getmap.c @@ -48,7 +48,7 @@ extern bool_t xdr_ypresp_all_seq __P(( XDR *, unsigned long * )); int (*ypresp_allfn)(); void *ypresp_data; extern DB *specdbp; -extern int yp_errno; +extern enum ypstat yp_errno; /* * This is largely the same as yp_all() except we do the transfer |