summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--assert/assert.h2
-rw-r--r--nscd/grpcache.c2
-rw-r--r--nscd/hstcache.c2
-rw-r--r--nscd/pwdcache.c2
5 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a4c1f2dddf..56b0d290b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-06-24 Thorsten Kukuk <kukuk@suse.de>
+
+ * nscd/grpcache.c: Add "notfound" data to cache, not iov pointer.
+ * nscd/pwdcache.c: Likewise.
+ * nscd/hstcache.c: Likewise.
+
1999-06-23 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/fpu_control.c: Include math.h for __P definition.
diff --git a/assert/assert.h b/assert/assert.h
index 386e80c3b1..326183a272 100644
--- a/assert/assert.h
+++ b/assert/assert.h
@@ -90,7 +90,7 @@ __END_DECLS
This is broken in G++ before version 2.6.
C9x has a similar variable called __func__, but prefer the GCC one since
it demangles C++ function names. */
-# if __GNUC_PREREQ (2, (defined __cplusplus ? 6 : 4))
+# if defined __cplusplus ? __GNUC_PREREQ (2, 6) : __GNUC_PREREQ (2, 4)
# define __ASSERT_FUNCTION __PRETTY_FUNCTION__
# else
# if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
diff --git a/nscd/grpcache.c b/nscd/grpcache.c
index 62f4c573a6..446e78ed28 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, &notfound,
sizeof (notfound), (void *) -1, 0, t, db, owner);
pthread_rwlock_unlock (&db->lock);
diff --git a/nscd/hstcache.c b/nscd/hstcache.c
index 292d9187e4..93b71a65d6 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, &notfound,
sizeof (notfound), (void *) -1, 0, t, db, owner);
pthread_rwlock_unlock (&db->lock);
diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c
index 2c4e6c722f..95d6ec3a6a 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, &notfound,
sizeof (notfound), (void *) -1, 0, t, db, owner);
pthread_rwlock_unlock (&db->lock);