1 /* Copyright (C) 1996, 2001, 2004, 2006 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 Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 /* Convert YP error number to NSS error number. */
24 const enum nss_status __yperr2nss_tab
[] =
26 [YPERR_SUCCESS
] = NSS_STATUS_SUCCESS
,
27 [YPERR_BADARGS
] = NSS_STATUS_UNAVAIL
,
28 [YPERR_RPC
] = NSS_STATUS_UNAVAIL
,
29 [YPERR_DOMAIN
] = NSS_STATUS_UNAVAIL
,
30 [YPERR_MAP
] = NSS_STATUS_UNAVAIL
,
31 [YPERR_KEY
] = NSS_STATUS_NOTFOUND
,
32 [YPERR_YPERR
] = NSS_STATUS_UNAVAIL
,
33 [YPERR_RESRC
] = NSS_STATUS_TRYAGAIN
,
34 [YPERR_NOMORE
] = NSS_STATUS_NOTFOUND
,
35 [YPERR_PMAP
] = NSS_STATUS_UNAVAIL
,
36 [YPERR_YPBIND
] = NSS_STATUS_UNAVAIL
,
37 [YPERR_YPSERV
] = NSS_STATUS_UNAVAIL
,
38 [YPERR_NODOM
] = NSS_STATUS_UNAVAIL
,
39 [YPERR_BADDB
] = NSS_STATUS_UNAVAIL
,
40 [YPERR_VERS
] = NSS_STATUS_UNAVAIL
,
41 [YPERR_ACCESS
] = NSS_STATUS_UNAVAIL
,
42 [YPERR_BUSY
] = NSS_STATUS_TRYAGAIN
44 const unsigned int __yperr2nss_count
= (sizeof (__yperr2nss_tab
)
45 / sizeof (__yperr2nss_tab
[0]));