-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* nis/nss-nisplus.h: Move niserr2nss_tab definition into separate file and rename to __niserr2nss_tab. Change NISERR_COUNT into variable __niserr2nss_count. * nis/nss-nisplus.c: New file. (libnss_nisplus-routines): Add nss-nisplus. * nss_nisplus/nisplus-alias.c: Remove unnecessary initializations. * nss_nisplus/nisplus-ethers.c: Likewise. * nss_nisplus/nisplus-grp.c: Likewise. * nss_nisplus/nisplus-hosts.c: Likewise. * nss_nisplus/nisplus-network.c: Likewise. * nss_nisplus/nisplus-proto.c: Likewise. * nss_nisplus/nisplus-pwd.c: Likewise. * nss_nisplus/nisplus-rpc.c: Likewise. * nss_nisplus/nisplus-service.c: Likewise. * nss_nisplus/nisplus-spwd.c: Likewise.
- Loading branch information
Ulrich Drepper
committed
Apr 26, 2001
1 parent
1b20d93
commit 9d4f43a
Showing
4 changed files
with
101 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* Copyright (C) 1997 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1997. | ||
The GNU C Library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Library General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
The GNU C Library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Library General Public License for more details. | ||
You should have received a copy of the GNU Library General Public | ||
License along with the GNU C Library; see the file COPYING.LIB. If not, | ||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
Boston, MA 02111-1307, USA. */ | ||
|
||
#include <rpcsvc/nis.h> | ||
|
||
#include "nss-nisplus.h" | ||
#include "nsswitch.h" | ||
|
||
|
||
/* Convert NIS+ error number to NSS error number. */ | ||
const enum nss_status __niserr2nss_tab[] = | ||
{ | ||
[NIS_SUCCESS] = NSS_STATUS_SUCCESS, | ||
[NIS_S_SUCCESS] = NSS_STATUS_SUCCESS, | ||
[NIS_NOTFOUND] = NSS_STATUS_NOTFOUND, | ||
[NIS_S_NOTFOUND] = NSS_STATUS_NOTFOUND, | ||
[NIS_CACHEEXPIRED] = NSS_STATUS_UNAVAIL, | ||
[NIS_NAMEUNREACHABLE] = NSS_STATUS_UNAVAIL, | ||
[NIS_UNKNOWNOBJ] = NSS_STATUS_NOTFOUND, | ||
[NIS_TRYAGAIN] = NSS_STATUS_TRYAGAIN, | ||
[NIS_SYSTEMERROR] = NSS_STATUS_UNAVAIL, | ||
[NIS_CHAINBROKEN] = NSS_STATUS_UNAVAIL, | ||
[NIS_PERMISSION] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOTOWNER] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOT_ME] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOMEMORY] = NSS_STATUS_TRYAGAIN, | ||
[NIS_NAMEEXISTS] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOTMASTER] = NSS_STATUS_UNAVAIL, | ||
[NIS_INVALIDOBJ] = NSS_STATUS_UNAVAIL, | ||
[NIS_BADNAME] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOCALLBACK] = NSS_STATUS_UNAVAIL, | ||
[NIS_CBRESULTS] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOSUCHNAME] = NSS_STATUS_NOTFOUND, | ||
[NIS_NOTUNIQUE] = NSS_STATUS_UNAVAIL, | ||
[NIS_IBMODERROR] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOSUCHTABLE] = NSS_STATUS_UNAVAIL, | ||
[NIS_TYPEMISMATCH] = NSS_STATUS_UNAVAIL, | ||
[NIS_LINKNAMEERROR] = NSS_STATUS_UNAVAIL, | ||
[NIS_PARTIAL] = NSS_STATUS_NOTFOUND, | ||
[NIS_TOOMANYATTRS] = NSS_STATUS_UNAVAIL, | ||
[NIS_RPCERROR] = NSS_STATUS_UNAVAIL, | ||
[NIS_BADATTRIBUTE] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOTSEARCHABLE] = NSS_STATUS_UNAVAIL, | ||
[NIS_CBERROR] = NSS_STATUS_UNAVAIL, | ||
[NIS_FOREIGNNS] = NSS_STATUS_UNAVAIL, | ||
[NIS_BADOBJECT] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOTSAMEOBJ] = NSS_STATUS_UNAVAIL, | ||
[NIS_MODFAIL] = NSS_STATUS_UNAVAIL, | ||
[NIS_BADREQUEST] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOTEMPTY] = NSS_STATUS_UNAVAIL, | ||
[NIS_COLDSTART_ERR] = NSS_STATUS_UNAVAIL, | ||
[NIS_RESYNC] = NSS_STATUS_UNAVAIL, | ||
[NIS_FAIL] = NSS_STATUS_UNAVAIL, | ||
[NIS_UNAVAIL] = NSS_STATUS_UNAVAIL, | ||
[NIS_RES2BIG] = NSS_STATUS_UNAVAIL, | ||
[NIS_SRVAUTH] = NSS_STATUS_UNAVAIL, | ||
[NIS_CLNTAUTH] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOFILESPACE] = NSS_STATUS_UNAVAIL, | ||
[NIS_NOPROC] = NSS_STATUS_UNAVAIL, | ||
[NIS_DUMPLATER] = NSS_STATUS_UNAVAIL | ||
}; | ||
const unsigned int __niserr2nss_count = (sizeof (__niserr2nss_tab) | ||
/ sizeof (__niserr2nss_tab[0])); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters