16312f5
diff -up rsnapshot-1.3.1/rsnapshot-program.pl.orig rsnapshot-1.3.1/rsnapshot-program.pl
16312f5
--- rsnapshot-1.3.1/rsnapshot-program.pl.orig	2009-09-06 16:28:38.000000000 +0200
16312f5
+++ rsnapshot-1.3.1/rsnapshot-program.pl	2009-09-06 16:27:51.000000000 +0200
16312f5
@@ -504,8 +504,8 @@ sub parse_config_file {
16312f5
 	# open the config file
16312f5
 	my $config_file = shift() || $config_file;
16312f5
 	my $CONFIG;
16312f5
-	if($config_file =~ /^`.*`$/) {
16312f5
-	    open($CONFIG, "$config_file|") ||
16312f5
+	if($config_file =~ /^`(.*)`$/) {
16312f5
+	    open($CONFIG, "$1|") ||
16312f5
 	        bail("Couldn't execute \"$config_file\" to get config information\nAre you sure you have permission?");
16312f5
 	} else {
16312f5
 	    $CONFIG = IO::File->new($config_file)