diff options
-rw-r--r-- | printf.c | 11 | ||||
-rwxr-xr-x | tests.sh | 4 |
2 files changed, 8 insertions, 7 deletions
@@ -100,7 +100,7 @@ static const struct timespec *get_time_field(const struct bfs_stat *statbuf, enu } } -/** %c, %c, and %t: ctime() */ +/** %a, %c, %t: ctime() */ static int bfs_printf_ctime(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) { // Not using ctime() itself because GNU find adds nanoseconds static const char *days[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; @@ -129,7 +129,7 @@ static int bfs_printf_ctime(FILE *file, const struct bfs_printf_directive *direc return fprintf(file, directive->str, buf); } -/** %A, %C, %T: strftime() */ +/** %A, %B/%W, %C, %T: strftime() */ static int bfs_printf_strftime(FILE *file, const struct bfs_printf_directive *directive, const struct BFTW *ftwbuf) { const struct timespec *ts = get_time_field(ftwbuf->statbuf, directive->stat_field); if (!ts) { @@ -735,15 +735,16 @@ struct bfs_printf *parse_bfs_printf(const char *format, struct cmdline *cmdline) case 'A': directive->stat_field = BFS_STAT_ATIME; goto directive_strftime; + case 'B': + case 'W': + directive->stat_field = BFS_STAT_BTIME; + goto directive_strftime; case 'C': directive->stat_field = BFS_STAT_CTIME; goto directive_strftime; case 'T': directive->stat_field = BFS_STAT_MTIME; goto directive_strftime; - case 'W': - directive->stat_field = BFS_STAT_BTIME; - goto directive_strftime; directive_strftime: directive->fn = bfs_printf_strftime; @@ -1418,8 +1418,8 @@ function test_printf_nul() { } function test_printf_w() { - # Birth times may not be supported, so just check that %w/%W can be parsed - bfs_diff times -false -printf '%w %WY\n' + # Birth times may not be supported, so just check that %w/%W/%B can be parsed + bfs_diff times -false -printf '%w %WY %BY\n' } function test_printf_Y_error() { |