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:
Ulrich Drepper 2003-04-28 05:30:22 +00:00
parent a16e35856a
commit fe45381231
4 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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;

View File

@ -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;

View File

@ -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;