summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorOliver Tappe2007-07-22 11:49:22 +0200
committerOliver Tappe2007-07-22 11:49:22 +0200
commit2615041bf7c763b356982299b54732eb2c3b1b3f (patch)
tree42393e73eb082fc9775362a160930ade99643c4b /lib
parent* fixed glob()-related hang in slxldd. (diff)
downloadcore-2615041bf7c763b356982299b54732eb2c3b1b3f.tar.gz
core-2615041bf7c763b356982299b54732eb2c3b1b3f.tar.xz
core-2615041bf7c763b356982299b54732eb2c3b1b3f.zip
* dropped our own implementation of glob() - that was a fix at the wrong place.
We now explicitly ecode the string before we are printing it. git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1271 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'lib')
-rw-r--r--lib/OpenSLX/Basics.pm11
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/OpenSLX/Basics.pm b/lib/OpenSLX/Basics.pm
index d26cf195..6c4fa87e 100644
--- a/lib/OpenSLX/Basics.pm
+++ b/lib/OpenSLX/Basics.pm
@@ -31,12 +31,11 @@ $VERSION = 1.01;
&checkFlags
&instantiateClass
&addCleanupFunction &removeCleanupFunction
- &glob
);
our (%openslxConfig, %cmdlineConfig, %openslxPath);
-use subs qw(die warn glob);
+use subs qw(die warn);
use open ':utf8';
@@ -470,14 +469,6 @@ sub _doThrowOrWarn
}
# ------------------------------------------------------------------------------
-sub glob
-{
- return map {
- decode('utf8', $_);
- } (File::Glob::bsd_glob(@_));
-}
-
-# ------------------------------------------------------------------------------
sub checkFlags
{
my $flags = shift || confess 'need to pass in flags-hashref!';