fix bug in call to Daemon::Contol redirect_filehandles (M. Planck)
This commit is contained in:
@@ -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]
|
[BUG FIXES]
|
||||||
|
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ sub fork_and_start {
|
|||||||
die "Can't fork: $!" unless defined $pid;
|
die "Can't fork: $!" unless defined $pid;
|
||||||
|
|
||||||
if ($pid == 0) { # child
|
if ($pid == 0) { # child
|
||||||
$daemon->redirect_filehandles();
|
$daemon->redirect_filehandles;
|
||||||
exec( $netdisco->stringify, @daemon_args );
|
exec( $netdisco->stringify, @daemon_args );
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ sub fork_and_start {
|
|||||||
die "Can't fork: $!" unless defined $pid;
|
die "Can't fork: $!" unless defined $pid;
|
||||||
|
|
||||||
if ($pid == 0) { # child
|
if ($pid == 0) { # child
|
||||||
$daemon->redirect_filehandles();
|
$daemon->redirect_filehandles;
|
||||||
exec( 'starman', @starman_args );
|
exec( 'starman', @starman_args );
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
Reference in New Issue
Block a user