From d765b0a1244988d6cd0c9147efef8ca13b285616 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Thu, 15 May 2014 16:53:52 +0100 Subject: [PATCH] fix bug in call to Daemon::Contol redirect_filehandles (M. Planck) --- Netdisco/Changes | 8 +++++++- Netdisco/bin/netdisco-daemon | 2 +- Netdisco/bin/netdisco-web | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Netdisco/Changes b/Netdisco/Changes index d2315e6f..dc235650 100644 --- a/Netdisco/Changes +++ b/Netdisco/Changes @@ -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] diff --git a/Netdisco/bin/netdisco-daemon b/Netdisco/bin/netdisco-daemon index cb1eac0e..68cecfdc 100755 --- a/Netdisco/bin/netdisco-daemon +++ b/Netdisco/bin/netdisco-daemon @@ -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 { diff --git a/Netdisco/bin/netdisco-web b/Netdisco/bin/netdisco-web index ddbad5f7..59d23210 100755 --- a/Netdisco/bin/netdisco-web +++ b/Netdisco/bin/netdisco-web @@ -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 {