From e11f536252fe1f4317c47c121f5026b9a458a311 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 12 Jan 2014 15:40:50 +0100 Subject: [PATCH] OpenVPN: Fix daemon stuck in WAIT state. When the client is in the WAIT state, it is usally connected to the server. --- html/cgi-bin/index.cgi | 2 +- html/cgi-bin/ovpnmain.cgi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html/cgi-bin/index.cgi b/html/cgi-bin/index.cgi index b3a262994..d6115bdb0 100644 --- a/html/cgi-bin/index.cgi +++ b/html/cgi-bin/index.cgi @@ -404,7 +404,7 @@ END my $display; my $display_colour = $Header::colourred; - if ( $tustate[1] eq 'CONNECTED') { + if (($tustate[1] eq 'CONNECTED') || ($tustate[1] eq 'WAIT')) { $display_colour = $Header::colourgreen; $display = $Lang::tr{'capsopen'}; } else { diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi index 75b6c75f1..b075cc54d 100644 --- a/html/cgi-bin/ovpnmain.cgi +++ b/html/cgi-bin/ovpnmain.cgi @@ -4941,7 +4941,7 @@ END #EXITING -- A graceful exit is in progress. #### - if ( $tustate[1] eq 'CONNECTED') { + if (($tustate[1] eq 'CONNECTED') || ($tustate[1] eq 'WAIT')) { $col1="bgcolor='${Header::colourgreen}'"; $active = "$Lang::tr{'capsopen'}"; }else { -- 2.39.2