Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* nscd/nscd.h (struct database_dyn): Change filename to an array
	to avoid relocations.
  • Loading branch information
Ulrich Drepper committed Apr 30, 2006
1 parent 34e2127 commit eaa27ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
@@ -1,5 +1,8 @@
2006-04-30 Ulrich Drepper <drepper@redhat.com>

* 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.
Expand Down
4 changes: 2 additions & 2 deletions nscd/nscd.h
Expand Up @@ -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. */
Expand Down

0 comments on commit eaa27ac

Please sign in to comment.