summaryrefslogtreecommitdiff
path: root/Echolot/Globals.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Echolot/Globals.pm')
-rw-r--r--Echolot/Globals.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/Echolot/Globals.pm b/Echolot/Globals.pm
index bd374da..0a1dabb 100644
--- a/Echolot/Globals.pm
+++ b/Echolot/Globals.pm
@@ -1,7 +1,7 @@
package Echolot::Globals;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: Globals.pm,v 1.2 2002/06/20 04:27:37 weasel Exp $
+# $Id: Globals.pm,v 1.3 2002/07/16 00:53:33 weasel Exp $
#
=pod
@@ -20,12 +20,15 @@ use Carp;
my $GLOBALS;
-sub init {
+sub init(%) {
+ my (%args) = @_;
+
my $hostname = `hostname`;
$hostname =~ /^([a-zA-Z0-9_-]*)$/;
$hostname = $1 || 'unknown';
$GLOBALS->{'hostname'} = $hostname;
$GLOBALS->{'internalcounter'} = 1;
+ $GLOBALS->{'version'} = $args{'version'};
};
sub initStorage {