summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX
diff options
context:
space:
mode:
authorOliver Tappe2008-03-12 18:46:13 +0100
committerOliver Tappe2008-03-12 18:46:13 +0100
commit29fbb8742c92435190e62598fe1534be42284f12 (patch)
tree0d0aef9e7f65b106f9785dc4f8c8d51fef6bdffc /installer/OpenSLX
parent* replaced 64-bit busybox with (hopefully) correctly built version (that no (diff)
downloadcore-29fbb8742c92435190e62598fe1534be42284f12.tar.gz
core-29fbb8742c92435190e62598fe1534be42284f12.tar.xz
core-29fbb8742c92435190e62598fe1534be42284f12.zip
* fixed potential use of uninitialized value
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1626 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX')
-rw-r--r--installer/OpenSLX/OSSetup/MetaPackager/smart.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSSetup/MetaPackager/smart.pm b/installer/OpenSLX/OSSetup/MetaPackager/smart.pm
index cbe96009..bc13d1ee 100644
--- a/installer/OpenSLX/OSSetup/MetaPackager/smart.pm
+++ b/installer/OpenSLX/OSSetup/MetaPackager/smart.pm
@@ -56,7 +56,7 @@ sub setupPackageSource
my $repoURLs = shift;
my $repoSubdir = '';
- if (length($repoInfo->{'repo-subdir'})) {
+ if ($repoInfo->{'repo-subdir'}) {
$repoSubdir = "/$repoInfo->{'repo-subdir'}";
}
my $baseURL = shift @$repoURLs;