diff options
-rwxr-xr-x | perl-install/standalone/drakTermServ | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakTermServ b/perl-install/standalone/drakTermServ index eaf9569a5..f39c2c3b9 100755 --- a/perl-install/standalone/drakTermServ +++ b/perl-install/standalone/drakTermServ @@ -540,7 +540,7 @@ sub make_nbi { $model && $iter or return; my $value = $model->get($iter, 0); my $path = $model->get_path_str($iter); - if ( $path !~ /:/ ) { + if ($path !~ /:/) { $kernel = $value; } else { my @elements = split(/:/, $path); @@ -767,7 +767,7 @@ sub maintain_clients { $model && $iter or return; my $value = $model->get($iter, 0); my $path = $model->get_path_str($iter); - if ( $path !~ /:/ ) { + if ($path !~ /:/) { $client = $value; $citer = $iter; } else { |