fix bug in call to Daemon::Contol redirect_filehandles (M. Planck)

This commit is contained in:
Oliver Gorwits
2014-05-15 16:53:52 +01:00
parent 213f44ec21
commit d765b0a124
3 changed files with 9 additions and 3 deletions

View File

@@ -1,4 +1,10 @@
2.027003 - 2014-05-04
2.027004 - 2014-05-15
[BUG FIXES]
* fix bug in call to Daemon::Contol redirect_filehandles (M. Planck)
2.027003 - 2014-05-14
[BUG FIXES]

View File

@@ -104,7 +104,7 @@ sub fork_and_start {
die "Can't fork: $!" unless defined $pid;
if ($pid == 0) { # child
$daemon->redirect_filehandles();
$daemon->redirect_filehandles;
exec( $netdisco->stringify, @daemon_args );
}
else {

View File

@@ -107,7 +107,7 @@ sub fork_and_start {
die "Can't fork: $!" unless defined $pid;
if ($pid == 0) { # child
$daemon->redirect_filehandles();
$daemon->redirect_filehandles;
exec( 'starman', @starman_args );
}
else {