Update.
[glibc.git] / nis / nss-nis.c
blob02e3d476a89c5109bfb168b472c01ac93f24375b
1 /* Copyright (C) 1996, 2001 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 #include <rpcsvc/ypclnt.h>
21 #include "nss-nis.h"
22 #include "nsswitch.h"
25 /* Convert YP error number to NSS error number. */
26 const enum nss_status __yperr2nss_tab[] =
28 [YPERR_SUCCESS] = NSS_STATUS_SUCCESS,
29 [YPERR_BADARGS] = NSS_STATUS_UNAVAIL,
30 [YPERR_RPC] = NSS_STATUS_UNAVAIL,
31 [YPERR_DOMAIN] = NSS_STATUS_UNAVAIL,
32 [YPERR_MAP] = NSS_STATUS_UNAVAIL,
33 [YPERR_KEY] = NSS_STATUS_NOTFOUND,
34 [YPERR_YPERR] = NSS_STATUS_UNAVAIL,
35 [YPERR_RESRC] = NSS_STATUS_TRYAGAIN,
36 [YPERR_NOMORE] = NSS_STATUS_NOTFOUND,
37 [YPERR_PMAP] = NSS_STATUS_UNAVAIL,
38 [YPERR_YPBIND] = NSS_STATUS_UNAVAIL,
39 [YPERR_YPSERV] = NSS_STATUS_UNAVAIL,
40 [YPERR_NODOM] = NSS_STATUS_UNAVAIL,
41 [YPERR_BADDB] = NSS_STATUS_UNAVAIL,
42 [YPERR_VERS] = NSS_STATUS_UNAVAIL,
43 [YPERR_ACCESS] = NSS_STATUS_UNAVAIL,
44 [YPERR_BUSY] = NSS_STATUS_TRYAGAIN
46 const unsigned int __yperr2nss_count = (sizeof (__yperr2nss_tab)
47 / sizeof (__yperr2nss_tab[0]));