From 6c4f8fdd44410759a3c371312d46e5017343ccd3 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 28 Jun 2025 11:20:11 +0000 Subject: [PATCH] ds: long_response: fix bad comment As far as I can tell, {long} never existed as a field and it's always meant the callback passed for ->long_response. --- lib/PublicInbox/DS.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm index 162ebad17..2b4528aea 100644 --- a/lib/PublicInbox/DS.pm +++ b/lib/PublicInbox/DS.pm @@ -637,7 +637,7 @@ sub long_response_done {} # overridden by Net::NNTP sub long_step { my ($self) = @_; - # wbuf is unset or empty, here; {long} may add to it + # wbuf is unset or empty, here; $cb may add to it my ($fd, $cb, $t0, @args) = @{$self->{long_cb}}; my $more = eval { $cb->($self, @args) }; if ($@ || !$self->{sock}) { # something bad happened... -- 2.47.3