summaryrefslogtreecommitdiff
path: root/utils/ldd.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-12-30 06:27:33 +0000
committerMike Frysinger <vapier@gentoo.org>2005-12-30 06:27:33 +0000
commitd2c24c51bd2bff1a291e1f217ae7f135066b0b9e (patch)
tree0872a63e0782c53fe76c65dab27467a3e4b54aaf /utils/ldd.c
parent0e89137680c5b381b022ef5a027a2de169798160 (diff)
tell people to ignore these two warnings unless someone can figure out how to make them go away ... the vfork() is safe due to the logic following it
Diffstat (limited to 'utils/ldd.c')
-rw-r--r--utils/ldd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/ldd.c b/utils/ldd.c
index ff1ec4a85..4545cf328 100644
--- a/utils/ldd.c
+++ b/utils/ldd.c
@@ -648,6 +648,7 @@ static struct library * find_elf_interpreter(ElfW(Ehdr)* ehdr)
}
/* map the .so, and locate interesting pieces */
+#warning "There may be two warnings here about vfork() clobbering, ignore them"
int find_dependancies(char* filename)
{
int is_suid = 0;