Commit 19f6e3b3 authored by Geoff Simmons's avatar Geoff Simmons

Prototype v0.5.5: Forward-porting v0.4.4 (bugfix: Log files always

overwritten, never appended)
parent bc352208
......@@ -212,7 +212,7 @@ use Getopt::Std;
use Pod::Usage;
$Getopt::Std::STANDARD_HELP_VERSION = 1;
$main::VERSION = "0.5.4";
$main::VERSION = "0.5.5";
sub HELP_MESSAGE {
pod2usage(-exit => 0, -verbose => 1);
......@@ -368,7 +368,7 @@ unless (defined $PIDFH) {
my $LOGFH;
if ($config{log}) {
$LOGFH = new FileHandle ">$config{log}";
$LOGFH = new FileHandle ">>$config{log}";
unless (defined $LOGFH) {
my $err = $!;
$! = SMF_EXIT_ERR_CONFIG;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment