diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 00:25:35 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 00:31:53 +0100 |
commit | d420552f02af2ad6a15cf3a70b76bf86b222c07e (patch) | |
tree | 8ab7137ed9264312aee69292d009509e70357ea7 /community/backuppc/remove-deprecated-perl-defined-at.patch | |
parent | 78a6ed13e4b5cd182f28be18694d543ae179446b (diff) | |
download | aports-d420552f02af2ad6a15cf3a70b76bf86b222c07e.tar.bz2 aports-d420552f02af2ad6a15cf3a70b76bf86b222c07e.tar.xz |
Remove more stale patches from community/
Diffstat (limited to 'community/backuppc/remove-deprecated-perl-defined-at.patch')
-rw-r--r-- | community/backuppc/remove-deprecated-perl-defined-at.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/community/backuppc/remove-deprecated-perl-defined-at.patch b/community/backuppc/remove-deprecated-perl-defined-at.patch deleted file mode 100644 index 471c767569..0000000000 --- a/community/backuppc/remove-deprecated-perl-defined-at.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 1261ba6d7a7ba0c973f25b8a63987360a639e16c Mon Sep 17 00:00:00 2001 -From: Alexander Moisseev <moiseev@mezonplus.ru> -Date: Wed, 7 Jan 2015 15:11:49 +0300 -Subject: [PATCH] Browse.pm: - Remove deprecated defined(@array) perl5160delta: - http://perldoc.perl.org/perldiag.html#defined(@array)-is-deprecated - ---- - lib/BackupPC/CGI/Browse.pm | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/BackupPC/CGI/Browse.pm b/lib/BackupPC/CGI/Browse.pm -index 7309955..fea400f 100644 ---- a/lib/BackupPC/CGI/Browse.pm -+++ b/lib/BackupPC/CGI/Browse.pm -@@ -65,7 +65,7 @@ sub action - # - # default to the newest backup - # -- if ( !defined($In{num}) && defined(@Backups) && @Backups > 0 ) { -+ if ( !defined($In{num}) && @Backups > 0 ) { - $i = @Backups - 1; - $num = $Backups[$i]{num}; - } |