From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 7ACC51F42D for ; Fri, 6 Apr 2018 21:44:39 +0000 (UTC) From: "Eric Wong (Contractor, The Linux Foundation)" To: meta@public-inbox.org Subject: [PATCH 1/4] altid: fix miscopied field name Date: Fri, 6 Apr 2018 21:44:36 +0000 Message-Id: <20180406214439.29591-2-e@80x24.org> In-Reply-To: <20180406214439.29591-1-e@80x24.org> References: <20180406214439.29591-1-e@80x24.org> List-Id: Oops :x --- lib/PublicInbox/AltId.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/AltId.pm b/lib/PublicInbox/AltId.pm index f8aa4cb..4a6ff97 100644 --- a/lib/PublicInbox/AltId.pm +++ b/lib/PublicInbox/AltId.pm @@ -39,7 +39,7 @@ sub mm_alt { my ($self) = @_; $self->{mm_alt} ||= eval { my $f = $self->{filename}; - my $writable = $self->{filename}; + my $writable = $self->{writable}; PublicInbox::Msgmap->new_file($f, $writable); }; } -- EW