> I'm assuming this became depreciated in some recent update to Perl?

Yes (see email on this list of 18.12.2011). Attaching the patch
--- lib/BackupPC/Storage/Text.pm        2011-04-25 05:31:55.000000000 +0200
+++ lib/BackupPC/Storage/Text_JH.pm     2011-11-28 17:25:44.579141456 +0100
@@ -299,5 +299,5 @@
     # Promote BackupFilesOnly and BackupFilesExclude to hashes
     #
-    foreach my $param qw(BackupFilesOnly BackupFilesExclude) {
+    foreach my $param ( qw(BackupFilesOnly BackupFilesExclude) ) {
         next if ( !defined($conf->{$param}) || ref($conf->{$param}) eq "HASH" 
);
         $conf->{$param} = [ $conf->{$param} ]
--- lib/BackupPC/Lib.pm 2011-04-25 05:31:55.000000000 +0200
+++ lib/BackupPC/Lib_JH.pm      2011-11-28 17:28:01.830700902 +0100
@@ -1410,5 +1410,5 @@
     $conf->{$shareName} = [ $conf->{$shareName} ]
                     if ( ref($conf->{$shareName}) ne "ARRAY" );
-    foreach my $param qw(BackupFilesOnly BackupFilesExclude) {
+    foreach my $param ( qw(BackupFilesOnly BackupFilesExclude) ) {
         next if ( !defined($conf->{$param}) );
         if ( ref($conf->{$param}) eq "HASH" ) {
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/

Reply via email to