diff options
author | B. Watson <urchlay@slackware.uk> | 2023-09-15 16:08:44 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2023-09-15 16:08:44 -0400 |
commit | aab2c27ba53aae0226d7909154d0cabc4429615f (patch) | |
tree | bd87ce34be6e80dfbf46a4a7df7d59fae06cf35d /sbolint | |
parent | c2bdc750a21fb9708f9b7fceb700f300455e7a59 (diff) | |
download | sbo-maintainer-tools-aab2c27ba53aae0226d7909154d0cabc4429615f.tar.gz |
sbolint: fix stupidity from ef85e9d (WTF was I smoking?)
Diffstat (limited to 'sbolint')
-rwxr-xr-x | sbolint | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -516,7 +516,7 @@ sub dequote { sub logmsg { my $severity = shift; my $format = shift; - print("$buildname: $severity: $format\n", @_); + printf("$buildname: $severity: $format\n", @_); } sub log_error { @@ -1057,7 +1057,7 @@ sub check_info { } if(!check_url($info{HOMEPAGE})) { - log_error("$file: HOMEPAGE=\"$info{HOMEPAGE}\" doesn't look like a valid URL (http, https, or ftp)"); + log_error("$file: HOMEPAGE=\"%s\" doesn't look like a valid URL (http, https, or ftp)", $info{HOMEPAGE}); } # use a HEAD request for homepage, even if downloading other files @@ -1099,7 +1099,7 @@ sub check_dl_and_md5 { for my $u (@dlurls) { if(!check_url($u)) { - log_error("$file: $dlkey URL '$u' doesn't look like a valid URL (http, https, or ftp)"); + log_error("%s: %s URL \"%s\" doesn't look like a valid URL (http, https, or ftp)", $file, $dlkey, $u); next; } @@ -1108,7 +1108,7 @@ sub check_dl_and_md5 { if($url_head) { curl_head_request($file, $u) || do { #warn '$u is '. $u; - log_warning("$file: $dlkey URL '$u' broken?"); + log_warning("%s: %s URL \"%s\" broken?", $file, $dlkey, $u); }; } elsif($url_download) { warn "$SELF: -d option not yet implemented\n"; @@ -1149,7 +1149,7 @@ sub curl_head_request { if(/^content-disposition:\s+attachment;\s+filename=["']?(.*?)["']?$/i) { #warn $1; if(defined($client_filename) && ($client_filename ne $1)) { - log_warning("$file: download filename varies based on content disposition: '$1' vs. '$client_filename'"); + log_warning("%s: download filename varies based on content disposition: '%s' vs. '%s'", $file, $1, $client_filename); } } } |