diff options
| author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-10-14 12:53:59 +0200 |
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-10-16 11:44:05 -0700 |
| commit | d14a2961de93e949818dbb9f67acaa88dc1a2320 (patch) | |
| tree | e5a2089ce4a9494e9a5ababa54eb6f923f18d64d | |
| parent | 92783184959e44abb18c067afc13155e53a32fc2 (diff) | |
| download | uClibc-alpine-d14a2961de93e949818dbb9f67acaa88dc1a2320.tar.bz2 uClibc-alpine-d14a2961de93e949818dbb9f67acaa88dc1a2320.tar.xz | |
fix cosmetic typo
s/dependancies/dependencies/g
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
| -rw-r--r-- | utils/ldd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/ldd.c b/utils/ldd.c index 9cfd984fa..7411c3244 100644 --- a/utils/ldd.c +++ b/utils/ldd.c @@ -608,7 +608,7 @@ static struct library *find_elf_interpreter(ElfW(Ehdr) *ehdr) /* #warning "There may be two warnings here about vfork() clobbering, ignore them" */ -static int find_dependancies(char *filename) +static int find_dependencies(char *filename) { int is_suid = 0; FILE *thefile; @@ -764,7 +764,7 @@ int main(int argc, char **argv) map_cache(); - if (find_dependancies(filename) != 0) + if (find_dependencies(filename) != 0) continue; while (got_em_all) { @@ -774,7 +774,7 @@ int main(int argc, char **argv) if (cur->resolved == 0 && cur->path) { got_em_all = 1; printf("checking sub-depends for '%s'\n", cur->path); - find_dependancies(cur->path); + find_dependencies(cur->path); cur->resolved = 1; } } |
