summaryrefslogtreecommitdiffstats
path: root/os-plugins/slxos-plugin
diff options
context:
space:
mode:
authorOliver Tappe2007-11-01 20:43:25 +0100
committerOliver Tappe2007-11-01 20:43:25 +0100
commit005394b5262fdedeead319fb04f89c701390bc53 (patch)
tree6c4c893c2046197645a93fefa30f1c350b061cc6 /os-plugins/slxos-plugin
parentLSM Webinterface, new actualized Version (diff)
downloadcore-005394b5262fdedeead319fb04f89c701390bc53.tar.gz
core-005394b5262fdedeead319fb04f89c701390bc53.tar.xz
core-005394b5262fdedeead319fb04f89c701390bc53.zip
* fixed used of uninitialized value
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1402 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/slxos-plugin')
-rwxr-xr-xos-plugins/slxos-plugin2
1 files changed, 1 insertions, 1 deletions
diff --git a/os-plugins/slxos-plugin b/os-plugins/slxos-plugin
index 077719a6..e6cf8071 100755
--- a/os-plugins/slxos-plugin
+++ b/os-plugins/slxos-plugin
@@ -57,7 +57,7 @@ if ($versionReq) {
openslxInit();
-my $action = shift @ARGV;
+my $action = shift @ARGV || '';
if ($action =~ m[^list-av]i) {
my @pluginFolders = glob("$openslxConfig{'base-path'}/lib/plugins/*");