[BackupPC-users] most recent version packaged for CentOS 5

2011-01-22 Thread Rob Owens
What is the latest packaged version of BackupPC available for CentOS 5?
I see this:
http://dev.centos.org/centos/5/testing/i386/RPMS/

Are any of you aware of something more recent?

Thanks

-Rob

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
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/


[BackupPC-users] How are characters that are alphanumeric ASCII represented in f-mangled file names and in the attrib file? and attrib files

2011-01-22 Thread Jeffrey J. Kosowsky
I know that in the fmangled, file listing, "/" is converted to %2f and
presumably so are things like spaces, linefeeds and other non alphanumeric 
ASCII characters.

But what about non-ASCII charsets like the ISO's and UTF8?

What about in the attrib file?

Thanks

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
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/


[BackupPC-users] Suggested improvements to MakeFileLink routine in Lib.pm

2011-01-22 Thread Jeffrey J. Kosowsky
It seems there are some extra tests and computation that are not
necessary. I will show my suggested changes with +/- style diff
Am I missing something?


 sub MakeFileLink
 {
 my($bpc, $name, $d, $newFile, $compress) = @_;
 my($i, $rawFile);
 
 return -1 if ( !-f $name );
+return -2 if ( !defined($rawFile = $bpc->MD52Path($d, $compress)) );
 for ( $i = -1 ; ; $i++ ) {
-return -2 if ( !defined($rawFile = $bpc->MD52Path($d, $compress)) );
 $rawFile .= "_$i" if ( $i >= 0 );
 if ( -f $rawFile ) {
 if ( (stat(_))[3] < $bpc->{Conf}{HardLinkMax}
 && !compare($name, $rawFile) ) {
 unlink($name);
 return -3 if ( !link($rawFile, $name) );
 return 1;
 }
- } elsif ( $newFile && -f $name && (stat($name))[3] == 1 ) {
+ } elsif ( $newFile && -f $name && (stat($_))[3] == 1 ) {
- my($newDir);
- ($newDir = $rawFile) =~ s{(.*)/.*}{$1};
+$rawfile =~ m{(.*)/}
- mkpath($newDir, 0, 0777) if ( !-d $newDir );
+ mkpath($1, 0, 0777) if ( !-d $1 );
 return -4 if ( !link($name, $rawFile) );
 return 2;
 } else {
 return 0;
 }
 }
 }

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
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/