* [PATCH] t/perf-nntpd.t: fix off-by-one if NEWNEWS_DATE is unset
@ 2019-06-30 22:24 Eric Wong
0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2019-06-30 22:24 UTC (permalink / raw)
To: meta
20190431 isn't real, NNTP.pm failed to parse it when our
test client sent it.
---
t/perf-nntpd.t | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/perf-nntpd.t b/t/perf-nntpd.t
index 3ca1ce33..ce3cc409 100644
--- a/t/perf-nntpd.t
+++ b/t/perf-nntpd.t
@@ -108,7 +108,7 @@ diag "XHDR From ". timestr($t) . " for $n";
my $date = $ENV{NEWNEWS_DATE};
unless ($date) {
my (undef, undef, undef, $d, $m, $y) = gmtime(time - 30 * 86400);
- $date = sprintf('%04u%02u%02u', $y + 1900, $m, $d);
+ $date = sprintf('%04u%02u%02u', $y + 1900, $m + 1, $d);
diag "NEWNEWS_DATE undefined, using $date";
}
$t = timeit(1, sub {
--
EW
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-06-30 22:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-30 22:24 [PATCH] t/perf-nntpd.t: fix off-by-one if NEWNEWS_DATE is unset Eric Wong
user/dev discussion of public-inbox itself
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://public-inbox.org/meta
git clone --mirror http://czquwvybam4bgbro.onion/meta
git clone --mirror http://hjrcffqmbrq6wope.onion/meta
git clone --mirror http://ou63pmih66umazou.onion/meta
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V1 meta meta/ https://public-inbox.org/meta \
meta@public-inbox.org
public-inbox-index meta
Example config snippet for mirrors.
Newsgroups are available over NNTP:
nntp://news.public-inbox.org/inbox.comp.mail.public-inbox.meta
nntp://ou63pmih66umazou.onion/inbox.comp.mail.public-inbox.meta
nntp://czquwvybam4bgbro.onion/inbox.comp.mail.public-inbox.meta
nntp://hjrcffqmbrq6wope.onion/inbox.comp.mail.public-inbox.meta
nntp://news.gmane.io/gmane.mail.public-inbox.general
note: .onion URLs require Tor: https://www.torproject.org/
code repositories for the project(s) associated with this inbox:
https://80x24.org/public-inbox.git
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git