Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 28 Apr 2003 05:30:22 +0000 (05:30 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 28 Apr 2003 05:30:22 +0000 (05:30 +0000)
2003-04-27  Ulrich Drepper  <drepper@redhat.com>

* nscd/pwdcache.c: Initialize .version element in result.
* nscd/grpcache.c: Likewise.
* nscd/pwdcache.c: Likewise.

ChangeLog
nscd/grpcache.c
nscd/hstcache.c
nscd/pwdcache.c

index 0562bdd02b32f8fbb93d0a3a94a5d9b1134a9770..f72e2d35304faf51075aa38e025744e2546e618e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index a8b33cab1a6ade1011ad55424e14247020a00aaa..11a2e717080b64d0647cb77aea58be86967ff4dc 100644 (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;
index 08d11e458635945e39fd92ccd538ba1ce562fc31..367953fc1ea529efb8339b4bebbe47f25f536dcf 100644 (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;
index 2f78884d881473fe68ce0930efc544793fa0f7d4..f6ca001a87f232656050ded31ad1ca4fb18c953a 100644 (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;