Fix typo.

Signed-off-by: Thomas Hochstein <thh@thh.name>
This commit is contained in:
Thomas Hochstein 2026-01-21 00:15:46 +01:00
parent e77967e78c
commit 9e63c45f0b

View file

@ -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 '';
}