Lines 363-369
sub _create_connection {
Link Here
|
363 |
#first remove surrounding spaces at comma and equals-sign |
363 |
#first remove surrounding spaces at comma and equals-sign |
364 |
s/^\s+|\s+$//g; |
364 |
s/^\s+|\s+$//g; |
365 |
my @temp= split '=', $_, 2; |
365 |
my @temp= split '=', $_, 2; |
366 |
@temp= map { s/^\s+|\s+$//g; $_; } @temp; |
366 |
@temp= map { my $c=$_; $c=~s/^\s+|\s+$//g; $c; } @temp; |
367 |
$option1->option( $temp[0] => $temp[1] ) if @temp; |
367 |
$option1->option( $temp[0] => $temp[1] ) if @temp; |
368 |
} |
368 |
} |
369 |
} elsif( $server->{servertype} eq 'zed' ) { |
369 |
} elsif( $server->{servertype} eq 'zed' ) { |
370 |
- |
|
|