Author: brad Date: 2006-08-16 18:52:29 +0000 (Wed, 16 Aug 2006) New Revision: 17575
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=17575 Log: Small bugfix, remove an extra concat operator. Modified: branches/SOC/bnh/perl/VMHost.pm Changeset: Modified: branches/SOC/bnh/perl/VMHost.pm =================================================================== --- branches/SOC/bnh/perl/VMHost.pm 2006-08-16 18:45:41 UTC (rev 17574) +++ branches/SOC/bnh/perl/VMHost.pm 2006-08-16 18:52:29 UTC (rev 17575) @@ -267,7 +267,7 @@ if ( $err_code != 0) { my $old_err_str = $err_str; $err_str = "Creating directory $dest_dir on host: " . - . $old_err_str; + $old_err_str; return ($err_code); }
