X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fnamespacize.c;h=f5dced5dd7201b184a979c3c48a2ecc7f22c2bf2;hp=3fa040282b13022c546f8d3e8ecac452a3fccd47;hb=cac3b2dd745bd86b26b176f06a7545bfa67112eb;hpb=9965fc25fcc92dc76d1cd4cf9595dc3dc9ebc586 diff --git a/tools/namespacize.c b/tools/namespacize.c index 3fa04028..f5dced5d 100644 --- a/tools/namespacize.c +++ b/tools/namespacize.c @@ -16,10 +16,6 @@ #include "ccan/talloc/talloc.h" #include "tools.h" -#define IDENT_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \ - "abcdefghijklmnopqrstuvwxyz" \ - "01234567889_" - static bool verbose = false; static int indent = 0; #define verbose(args...) \ @@ -483,7 +479,7 @@ static void adjust_dir(const char *dir) verbose("Adjusting %s\n", dir); verbose_indent(); - for (deps = get_deps(parent, dir); *deps; deps++) { + for (deps = get_deps(parent, dir, false); *deps; deps++) { char *depdir; struct adjusted *adj = NULL; struct replace *repl; @@ -521,7 +517,7 @@ static void adjust_dependents(const char *dir) if (access(infoc, R_OK) != 0) continue; - for (deps = get_deps(*file, *file); *deps; deps++) { + for (deps = get_deps(*file, *file, false); *deps; deps++) { if (streq(*deps, base)) isdep = true; }