mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
Update.
2003-04-27 Ulrich Drepper <drepper@redhat.com> * nscd/pwdcache.c: Initialize .version element in result. * nscd/grpcache.c: Likewise. * nscd/pwdcache.c: Likewise.
This commit is contained in:
parent
a16e35856a
commit
fe45381231
@ -1,3 +1,9 @@
|
||||
2003-04-27 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nscd/pwdcache.c: Initialize .version element in result.
|
||||
* nscd/grpcache.c: Likewise.
|
||||
* nscd/pwdcache.c: Likewise.
|
||||
|
||||
2003-04-27 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* Makeconfig ($(common-objpfx)sysd-sorted): Fix for running in
|
||||
|
@ -152,6 +152,7 @@ cache_addgr (struct database *db, int fd, request_header *req, void *key,
|
||||
/* There is no reason to go on. */
|
||||
error (EXIT_FAILURE, errno, _("while allocating cache entry"));
|
||||
|
||||
data->resp.version = NSCD_VERSION;
|
||||
data->resp.found = 1;
|
||||
data->resp.gr_name_len = gr_name_len;
|
||||
data->resp.gr_passwd_len = gr_passwd_len;
|
||||
|
@ -167,6 +167,7 @@ cache_addhst (struct database *db, int fd, request_header *req, void *key,
|
||||
/* There is no reason to go on. */
|
||||
error (EXIT_FAILURE, errno, _("while allocating cache entry"));
|
||||
|
||||
data->resp.version = NSCD_VERSION;
|
||||
data->resp.found = 1;
|
||||
data->resp.h_name_len = h_name_len;
|
||||
data->resp.h_aliases_cnt = h_aliases_cnt;
|
||||
|
@ -145,6 +145,7 @@ cache_addpw (struct database *db, int fd, request_header *req, void *key,
|
||||
/* There is no reason to go on. */
|
||||
error (EXIT_FAILURE, errno, _("while allocating cache entry"));
|
||||
|
||||
data->resp.version = NSCD_VERSION;
|
||||
data->resp.found = 1;
|
||||
data->resp.pw_name_len = pw_name_len;
|
||||
data->resp.pw_passwd_len = pw_passwd_len;
|
||||
|
Loading…
Reference in New Issue
Block a user