forked from lattera/glibc
-
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.
Add missing gshadow handling in __nss_configure_lookup
- Loading branch information
Showing
2 changed files
with
4 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
2012-03-06 Ulrich Drepper <[email protected]> | ||
|
||
* nss/databases.def: Add missing gshadow entry. | ||
|
||
* stdio-common/vfprintf.c: Fix formatting. Missing copyright update. | ||
|
||
2012-03-06 Marek Polacek <[email protected]> | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* List of all databases defined for the NSS in GNU C Library. | ||
Copyright (C) 1996, 1997, 2005, 2011 Free Software Foundation, Inc. | ||
Copyright (C) 1996, 1997, 2005, 2011, 2012 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Contributed by Ulrich Drepper <[email protected]>, 1996. | ||
|
||
|
@@ -23,6 +23,7 @@ | |
DEFINE_DATABASE (aliases) | ||
DEFINE_DATABASE (ethers) | ||
DEFINE_DATABASE (group) | ||
DEFINE_DATABASE (gshadow) | ||
DEFINE_DATABASE (hosts) | ||
DEFINE_DATABASE (initgroups) | ||
DEFINE_DATABASE (netgroup) | ||
|