1
0
mirror of synced 2026-01-22 02:05:22 +00:00

2007-09-04 21:27:42 by steve

Fixed stupid syntax error.
This commit is contained in:
steve 2007-09-04 21:27:42 +00:00
parent f79531b292
commit 4d534217ef

View File

@ -103,7 +103,7 @@ xt-create-config - Create a Xen configuration file for a new guest
--
http://www.steve.org.uk/
$Id: xt-create-xen-config,v 1.44 2007-09-04 21:05:11 steve Exp $
$Id: xt-create-xen-config,v 1.45 2007-09-04 21:27:42 steve Exp $
=cut
@ -230,7 +230,7 @@ sub parseCommandLineArguments
if ( $VERSION )
{
my $REVISION = '$Revision: 1.44 $';
my $REVISION = '$Revision: 1.45 $';
if ( $REVISION =~ /1.([0-9.]+) / )
{
$REVISION = $1;
@ -355,7 +355,7 @@ sub createXenConfig
{
$device = 'hda';
}
else if ( defined( $ENV{'disk_device'} ) )
elsif ( defined( $ENV{'disk_device'} ) )
{
$device = $ENV{'disk_device'};