From 9e63c45f0b3991f0a0d1f42d99f5f697a62a1d8f Mon Sep 17 00:00:00 2001 From: Thomas Hochstein Date: Wed, 21 Jan 2026 00:15:46 +0100 Subject: [PATCH] Fix typo. Signed-off-by: Thomas Hochstein --- bin/yapfaq.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/yapfaq.pl b/bin/yapfaq.pl index 61f4c3a..135b1ac 100755 --- a/bin/yapfaq.pl +++ b/bin/yapfaq.pl @@ -364,7 +364,7 @@ sub AuthNNTP { ### ------------------------------------------------------------------ ### build posting -# read and parser header and body from files +# read and parse header and body from files # read status file, check due date sub BuildPosting { my $Project = shift; @@ -520,7 +520,7 @@ sub BuildPosting { if ($OptForce or (!$LastPosted) or ($LastPosted && $NextPosted <= DateTime->now)) { print "... is due and will be posted.\n" if $Config{'verbose'} or $Config{'debug'}; } else { - printf ("... is not due (next post at %s).\n", $NextPosted->strftime('%Y-%m-%d')) + printf("... is not due (next post at %s).\n", $NextPosted->strftime('%Y-%m-%d')) if $Config{'verbose'} or $Config{'debug'}; return ''; }