From 5c9cbca656c049d9b7928d36f3c0ce7fb653f67a Mon Sep 17 00:00:00 2001 From: Ian Kelling Date: Mon, 18 Oct 2021 16:25:23 -0400 Subject: [PATCH] fix for gpgv upgrade 1.4 to 2.2.4 --- upload-ftp-v1.2.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload-ftp-v1.2.pl b/upload-ftp-v1.2.pl index 65cdb7d..02417c7 100755 --- a/upload-ftp-v1.2.pl +++ b/upload-ftp-v1.2.pl @@ -972,7 +972,7 @@ sub read_directive_file { # than the one for the last file that was uploaded # This is only relevant when a 'filename' directive is present, hence the # test of the $filename_required variable. - if (($retval =~ /Signature made (.*?) using/) && ($filename_required)) { + if (($retval =~ /Signature made (.*)/) && ($filename_required)) { my $timestr = $1; # If the time/date string starts with a weekday (e.g. "Wed Apr 28 16:40:03 2004 EDT"), # chop off the weekday - Date::Manip doesn't like it -- 2.25.1