forked from pool/glibc
b5ae287187
Update to glibc 2.15 - do not forward to Factory yet. OBS-URL: https://build.opensuse.org/request/show/98264 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=144
39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
Index: nscd/nscd.conf
|
|
===================================================================
|
|
--- nscd/nscd.conf.orig 2010-01-18 18:01:41.000000000 +0100
|
|
+++ nscd/nscd.conf 2010-02-14 14:58:08.000000000 +0100
|
|
@@ -61,11 +61,11 @@
|
|
auto-propagate group yes
|
|
|
|
enable-cache hosts yes
|
|
- positive-time-to-live hosts 3600
|
|
- negative-time-to-live hosts 20
|
|
+ positive-time-to-live hosts 600
|
|
+ negative-time-to-live hosts 0
|
|
suggested-size hosts 211
|
|
check-files hosts yes
|
|
- persistent hosts yes
|
|
+ persistent hosts no
|
|
shared hosts yes
|
|
max-db-size hosts 33554432
|
|
|
|
Index: nscd/nscd_stat.c
|
|
===================================================================
|
|
--- nscd/nscd_stat.c.orig 2010-01-18 18:01:41.000000000 +0100
|
|
+++ nscd/nscd_stat.c 2010-02-14 15:02:41.000000000 +0100
|
|
@@ -37,8 +37,13 @@
|
|
#endif /* HAVE_SELINUX */
|
|
|
|
|
|
-/* We use this to make sure the receiver is the same. */
|
|
+/* We use this to make sure the receiver is the same. Capture mtime
|
|
+ of this file if possible. */
|
|
+#if defined(__TIMESTAMP__)
|
|
+static const char compilation[21] = __TIMESTAMP__;
|
|
+#else
|
|
static const char compilation[21] = __DATE__ " " __TIME__;
|
|
+#endif
|
|
|
|
/* Statistic data for one database. */
|
|
struct dbstat
|