summaryrefslogtreecommitdiffstats
path: root/libexec/rtld-aout/shlib.c
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2005-01-14 12:22:57 +0000
committerdelphij <delphij@FreeBSD.org>2005-01-14 12:22:57 +0000
commit830453071ae42ff63af88f29575408103ff3facb (patch)
tree434dbe83b1b4c5346fd59d5f3a689f92fe765729 /libexec/rtld-aout/shlib.c
parent7e1fa1922ff8dfa6ae8ea8c8ece55c047462db99 (diff)
downloadFreeBSD-src-830453071ae42ff63af88f29575408103ff3facb.zip
FreeBSD-src-830453071ae42ff63af88f29575408103ff3facb.tar.gz
64-bit clean + WARNS=6:
- Convert the (char *) cast+cast backs magic to memcpy(3). Without this, the resulting code is potentially risky with higher optimization levels. - Avoid same name when calling local variables, as well as global symbols. This reduces confusion for both human and compiler. - Add necessary casts, consts - Use new style function defination. - Minor style.Makefile(5) tweak - Bump WARNS?= from 0 to 6 ** for the aout code: changes are intentionally limited to ease maintaince.
Diffstat (limited to 'libexec/rtld-aout/shlib.c')
-rw-r--r--libexec/rtld-aout/shlib.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libexec/rtld-aout/shlib.c b/libexec/rtld-aout/shlib.c
index 9fd2c66..39ec792 100644
--- a/libexec/rtld-aout/shlib.c
+++ b/libexec/rtld-aout/shlib.c
@@ -62,14 +62,13 @@
char **search_dirs;
int n_search_dirs;
-char *standard_search_dirs[] = {
+const char *standard_search_dirs[] = {
STANDARD_SEARCH_DIRS
};
void
-add_search_dir(name)
- char *name;
+add_search_dir(const char *name)
{
int n;
@@ -269,7 +268,7 @@ search_lib_dir(dir, name, majorp, minorp, do_dot_a)
int *minorp;
int do_dot_a;
{
- int namelen;
+ size_t namelen;
DIR *dd;
struct dirent *dp;
int best_dewey[MAXDEWEY];
OpenPOWER on IntegriCloud