diff options
Diffstat (limited to 'nscd')
-rw-r--r-- | nscd/grpcache.c | 2 | ||||
-rw-r--r-- | nscd/hstcache.c | 2 | ||||
-rw-r--r-- | nscd/pwdcache.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/nscd/grpcache.c b/nscd/grpcache.c index 62f4c57..446e78e 100644 --- a/nscd/grpcache.c +++ b/nscd/grpcache.c @@ -105,7 +105,7 @@ cache_addgr (struct database *db, int fd, request_header *req, void *key, /* Now get the lock to safely insert the records. */ pthread_rwlock_rdlock (&db->lock); - cache_add (req->type, copy, req->key_len, &iov_notfound, + cache_add (req->type, copy, req->key_len, ¬found, sizeof (notfound), (void *) -1, 0, t, db, owner); pthread_rwlock_unlock (&db->lock); diff --git a/nscd/hstcache.c b/nscd/hstcache.c index 292d918..93b71a6 100644 --- a/nscd/hstcache.c +++ b/nscd/hstcache.c @@ -116,7 +116,7 @@ cache_addhst (struct database *db, int fd, request_header *req, void *key, /* Now get the lock to safely insert the records. */ pthread_rwlock_rdlock (&db->lock); - cache_add (req->type, copy, req->key_len, &iov_notfound, + cache_add (req->type, copy, req->key_len, ¬found, sizeof (notfound), (void *) -1, 0, t, db, owner); pthread_rwlock_unlock (&db->lock); diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c index 2c4e6c7..95d6ec3 100644 --- a/nscd/pwdcache.c +++ b/nscd/pwdcache.c @@ -112,7 +112,7 @@ cache_addpw (struct database *db, int fd, request_header *req, void *key, /* Now get the lock to safely insert the records. */ pthread_rwlock_rdlock (&db->lock); - cache_add (req->type, copy, req->key_len, &iov_notfound, + cache_add (req->type, copy, req->key_len, ¬found, sizeof (notfound), (void *) -1, 0, t, db, owner); pthread_rwlock_unlock (&db->lock); |