From e84730948d8a89f27a002a0e9d148182f7a497cc Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Thu, 14 Apr 2011 01:27:39 +0200 Subject: Replaced var manipulations with perlish hacks. --- lib/mk-ca-bundle.pl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl index b0c8698d8..231762e60 100755 --- a/lib/mk-ca-bundle.pl +++ b/lib/mk-ca-bundle.pl @@ -56,8 +56,7 @@ if ($opt_i) { print ("=" x 78 . "\n"); } -$0 =~ s/\\/\//g; -$0 = substr($0, rindex($0, '/') + 1); +$0 =~ s@.*(/|\\)@@; if ($opt_h) { printf("Usage:\t%s [-b] [-i] [-l] [-n] [-q] [-t] [-u] [-v] []\n", $0); print "\t-b\tbackup an existing version of ca-bundle.crt\n"; @@ -72,8 +71,7 @@ if ($opt_h) { } my $crt = $ARGV[0] || 'ca-bundle.crt'; -my $txt = substr($url, rindex($url, '/') + 1); -$txt =~ s/\?.*//; +(my $txt = $url) =~ s@(.*/|\?.*)@@g; my $resp; -- cgit v1.2.3