From 7e47b27f053ece7fc9bf25f7c2d24228ab4feaf1 Mon Sep 17 00:00:00 2001 From: Dave Chinner Date: Thu, 15 May 2008 16:38:14 +0000 Subject: [PATCH] Fix pathname filter issue. If the path to the file being bmap'd has a [0-9] in it, the output filter matches it and we get golden output failure. Be more specific on the match. Merge of master-melb:xfs-cmds:31170a by kenmcd. Be more specific when trying to match extent output lines. --- 166 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/166 b/166 index 1639711f..0b49380d 100644 --- a/166 +++ b/166 @@ -33,7 +33,7 @@ _cleanup() _filter_blocks() { $AWK_PROG ' -/[0-9]/ { +/^ +[0-9]/ { if (!written_size) { written_size = $6 unwritten1 = ((1048576/512) / 2) - written_size -- 2.39.5