From beb924e12d33f11d76c54fad003c6ae3adc9fcc7 Mon Sep 17 00:00:00 2001 From: Evan Danaher Date: Tue, 11 Apr 2017 12:33:40 -0400 Subject: btrfs-progs: send: always print a space after path in dump I was shocked to discover that 'btrfs receive --dump' doesn't print a space after long filenames, so it runs together into the metadata; for example: truncate ./20-00-03/this-name-is-32-characters-longsize=0 This is a trivial patch to add a single space unconditionally, so the result is the following: truncate ./20-00-03/this-name-is-32-characters-long size=0 I suppose this is technically a breaking change, but it seems unlikely to me that anyone would depend on the existing behavior given how unfriendly it is. Signed-off-by: Evan Danaher Reviewed-by: Noah Massey Signed-off-by: David Sterba --- send-dump.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'send-dump.c') diff --git a/send-dump.c b/send-dump.c index 67f79779..1591e0cc 100644 --- a/send-dump.c +++ b/send-dump.c @@ -116,9 +116,10 @@ static int __print_dump(int subvol, void *user, const char *path, putchar('\n'); return 0; } - /* Short paths ale aligned to 32 chars */ - while (ret++ < 32) + /* Short paths are aligned to 32 chars; longer paths get a single space */ + do { putchar(' '); + } while (++ret < 32); va_start(args, fmt); /* Operation specified ones */ vprintf(fmt, args); -- cgit v1.2.3