about summary refs log tree commit homepage
path: root/xt
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-03-04 19:10:58 -0800
committerEric Wong <e@80x24.org>2021-03-05 07:20:12 +0000
commit2958cd17d58c79c952afae6cfd594595ffcaf4fa (patch)
tree9da584d1027eab9157465fc17ef712aafc7c3617 /xt
parentf4b80f19d30845d43c82e49fc071077582b17a74 (diff)
downloadpublic-inbox-2958cd17d58c79c952afae6cfd594595ffcaf4fa.tar.gz
So far, searching by size has never been publicly documented,
and IMHO, of questionable utility.  In any case, "z:" is what
mairix(1) uses, so it may be familiar to existing mairix users
(I've never used this prefix myself).

So far, this prefix is only used internally in tests and in
auto-translated queries from IMAP; thus this incompatible change
is unlikely to affect anyone.
Diffstat (limited to 'xt')
-rw-r--r--xt/lei-sigpipe.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/xt/lei-sigpipe.t b/xt/lei-sigpipe.t
index ba2d23c8..44020bad 100644
--- a/xt/lei-sigpipe.t
+++ b/xt/lei-sigpipe.t
@@ -15,7 +15,7 @@ my $do_test = sub {
                 pipe(my ($r, $w)) or BAIL_OUT $!;
                 open my $err, '+>', undef or BAIL_OUT $!;
                 my $opt = { run_mode => 0, 1 => $w, 2 => $err };
-                my $cmd = [qw(lei q -q -t), @$out, 'bytes:1..'];
+                my $cmd = [qw(lei q -q -t), @$out, 'z:1..'];
                 my $tp = start_script($cmd, $env, $opt);
                 close $w;
                 sysread($r, my $buf, 1);