about summary refs log tree commit homepage
path: root/lib/PublicInbox/Import.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-05-25 02:24:16 +0000
committerEric Wong <e@80x24.org>2017-05-25 02:24:16 +0000
commit6dd8be30a9aeefa550b05a4f298934fd37a25c2c (patch)
tree0e337b694efacefc9a32558b2bfe70b22326b2e7 /lib/PublicInbox/Import.pm
parente2c0e75a55e0df8e7a68b0cf7f078e9317e99ee2 (diff)
downloadpublic-inbox-6dd8be30a9aeefa550b05a4f298934fd37a25c2c.tar.gz
This was necessary for the presence of the 0xa0 byte(*)
in the Subject: of the message at:
http://blade.nagaokaut.ac.jp/ruby/ruby-core/3220

(*) That is 0xa0, not 0x0a ("\n"), so I wonder if the
    nibbles got swapped somehow.
Diffstat (limited to 'lib/PublicInbox/Import.pm')
-rw-r--r--lib/PublicInbox/Import.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm
index 13671a4f..65da4ddf 100644
--- a/lib/PublicInbox/Import.pm
+++ b/lib/PublicInbox/Import.pm
@@ -191,11 +191,10 @@ sub add {
         binmode $w, ':utf8' or die "binmode :utf8 failed: $!";
         print $w "commit $ref\nmark :$commit\n",
                 "author $name <$email> $date\n",
-                "committer $self->{ident} ", now2822(), "\n",
-                "data ", (bytes::length($subject) + 1), "\n",
-                $subject, "\n\n" or wfail;
+                "committer $self->{ident} ", now2822(), "\n" or wfail;
         binmode $w, ':raw' or die "binmode :raw failed: $!";
-
+        print $w "data ", (bytes::length($subject) + 1), "\n",
+                $subject, "\n\n" or wfail;
         if ($tip ne '') {
                 print $w 'from ', ($parent ? $parent : $tip), "\n" or wfail;
         }