diff options
author | Peter Palfrader <peter@palfrader.org> | 2002-08-05 17:46:17 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2002-08-05 17:46:17 +0000 |
commit | cf28f8dc58c855261ceb624dab6bbab642887daf (patch) | |
tree | 7f85a64f2896333f9b1b8b44efcc7e85092fd001 | |
parent | f53580f49eab1577853aa3fe41e86dde386016f5 (diff) |
Actually use the sane basedirecholot-2.0beta22
-rw-r--r-- | Echolot/Config.pm | 4 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | pingd | 4 |
3 files changed, 7 insertions, 4 deletions
diff --git a/Echolot/Config.pm b/Echolot/Config.pm index 8cb5237..9d818f9 100644 --- a/Echolot/Config.pm +++ b/Echolot/Config.pm @@ -1,7 +1,7 @@ package Echolot::Config; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Config.pm,v 1.33 2002/08/05 17:30:09 weasel Exp $ +# $Id: Config.pm,v 1.34 2002/08/05 17:46:17 weasel Exp $ # =pod @@ -201,7 +201,7 @@ sub init($) { for my $key (keys %$DEFAULT) { $CONFIG->{$key} = $DEFAULT->{$key} unless defined $CONFIG->{$key}; }; - $CONFIG->{'basedir'} = $params->{'basedir'} unless (defined $CONFIG->{'verbose'}); + $CONFIG->{'homedir'} = $params->{'basedir'} unless (defined $CONFIG->{'homedir'}); $CONFIG->{'verbose'} = $params->{'verbose'} if ($params->{'verbose'}); for my $key (keys %$CONFIG) { @@ -1,3 +1,6 @@ +Changes in version 2.0beta22 - 2002-08-05 + * Actually use the sane basedir. *sigh* + Changes in version 2.0beta21 - 2002-08-05 * Using a sane basedir by default. You no longer need to specify it in pingd.conf. @@ -3,7 +3,7 @@ $| = 1; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: pingd,v 1.52 2002/08/05 17:30:09 weasel Exp $ +# $Id: pingd,v 1.53 2002/08/05 17:46:17 weasel Exp $ # =pod @@ -280,7 +280,7 @@ use Echolot::Thesaurus; delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'}; -my $VERSION = '2.0beta21'; +my $VERSION = '2.0beta22'; my $redirected_stdio = 0; |