| Summary: | Wrong opt_complementary string in miscutils/chrt.c | ||
|---|---|---|---|
| Product: | Busybox | Reporter: | Davide Viti <zinosat> |
| Component: | Other | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | busybox-cvs |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Host: | Target: | ||
| Build: | |||
| Attachments: | One line patch which fixes the problem | ||
Thanks! Fixed in git, will be in 1.19.x |
Created attachment 2815 [details] One line patch which fixes the problem opt_complementary = "-1:r--fo:f--ro:r--fo"; ^^^^^ ^^^^^ "r--fo" is repeated twice. It should look something like this instead: opt_complementary = "-1:r--fo:f--ro:o--rf"; regards, Davide