This modifies the debianutil run-parts recognizes files with "." in its name
Signed-off-by: Amy Fong <[email protected]> --- debianutils/run_parts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/debianutils/run_parts.c +++ b/debianutils/run_parts.c @@ -90,7 +90,7 @@ { c = bb_basename(c); - while (*c && (isalnum(*c) || *c == '_' || *c == '-')) + while (*c && (isalnum(*c) || *c == '_' || *c == '-' || *c == '.')) c++; return *c; /* TRUE (!0) if terminating NUL is not reached */ _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
