about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/check_pf.c
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2014-11-20 13:12:02 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2014-11-24 11:41:44 +0530
commit85f36372aa9b7c4f8e1ebb6a3bf2c0785a019612 (patch)
tree603dbb1b8a58250ebed52fc8ea7964a128376e6a /sysdeps/unix/sysv/linux/check_pf.c
parentfb6784e3068a747ead34e6dee6a9a1978668a955 (diff)
downloadglibc-85f36372aa9b7c4f8e1ebb6a3bf2c0785a019612.tar.gz
glibc-85f36372aa9b7c4f8e1ebb6a3bf2c0785a019612.tar.xz
glibc-85f36372aa9b7c4f8e1ebb6a3bf2c0785a019612.zip
Remove IS_IN_nscd
Replace with IS_IN (nscd).  Generated code unchanged on x86_64.

	* include/ifaddrs.h: Use IS_IN.
	* inet/check_pf.c: Likewise.
	* sysdeps/unix/sysv/linux/check_pf.c: Likewise.
	* nscd/Makefile (CPPFLAGS-nscd): Remove IS_IN_nscd.
Diffstat (limited to 'sysdeps/unix/sysv/linux/check_pf.c')
-rw-r--r--sysdeps/unix/sysv/linux/check_pf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/check_pf.c b/sysdeps/unix/sysv/linux/check_pf.c
index 976f249e20..4ba13e2e3b 100644
--- a/sysdeps/unix/sysv/linux/check_pf.c
+++ b/sysdeps/unix/sysv/linux/check_pf.c
@@ -65,7 +65,7 @@ static struct cached_data *cache;
 __libc_lock_define_initialized (static, lock);
 
 
-#ifdef IS_IN_nscd
+#if IS_IN (nscd)
 static uint32_t nl_timestamp;
 
 uint32_t
@@ -81,7 +81,7 @@ __bump_nl_timestamp (void)
 static inline uint32_t
 get_nl_timestamp (void)
 {
-#ifdef IS_IN_nscd
+#if IS_IN (nscd)
   return nl_timestamp;
 #elif defined USE_NSCD
   return __nscd_get_nl_timestamp ();