]> git.ozlabs.org Git - ccan/blobdiff - tools/namespacize.c
Added module block_pool
[ccan] / tools / namespacize.c
index cbee678c3ecf0d03ff02c59cd7b037778aab0989..0ed36aa6acf8f7ae8ae2b28636b6c80af3cdeba0 100644 (file)
 #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...)                                               \
@@ -511,14 +507,14 @@ static void adjust_dependents(const char *dir)
        verbose("Looking for dependents in %s\n", parent);
        verbose_indent();
        for (file = get_dir(parent); *file; file++) {
-               char *infoc, **deps;
+               char *info, **deps;
                bool isdep = false;
 
                if (basename(*file, *file)[0] == '.')
                        continue;
 
-               infoc = talloc_asprintf(*file, "%s/_info.c", *file);
-               if (access(infoc, R_OK) != 0)
+               info = talloc_asprintf(*file, "%s/_info", *file);
+               if (access(info, R_OK) != 0)
                        continue;
 
                for (deps = get_deps(*file, *file, false); *deps; deps++) {