From: Ulrich Drepper Date: Sun, 30 Apr 2006 16:39:16 +0000 (+0000) Subject: * nscd/nscd.h (struct database_dyn): Change filename to an array X-Git-Tag: upstream/2.20~8579 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaa27aca6ff96aab4f58832545ddc9889baf8129;p=platform%2Fupstream%2Flinaro-glibc.git * nscd/nscd.h (struct database_dyn): Change filename to an array to avoid relocations. --- diff --git a/ChangeLog b/ChangeLog index 502b3fa..dfb4bd1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-04-30 Ulrich Drepper + * nscd/nscd.h (struct database_dyn): Change filename to an array + to avoid relocations. + * elf/ldd.bash.in: If --verify loop fails to find a dynamic linker for the file don't just try the first one listed in RTLDLIST again. We already have the status. diff --git a/nscd/nscd.h b/nscd/nscd.h index f826c7a..8b95630 100644 --- a/nscd/nscd.h +++ b/nscd/nscd.h @@ -64,11 +64,11 @@ struct database_dyn int persistent; int shared; int propagate; - size_t max_db_size; - const char *filename; + const char filename[12]; const char *db_filename; time_t file_mtime; size_t suggested_module; + size_t max_db_size; unsigned long int postimeout; /* In seconds. */ unsigned long int negtimeout; /* In seconds. */