From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jon Murphy To: development@lists.ipfire.org Subject: [PATCH] extrahd.cgi: Fix for Bug #12863 Date: Fri, 02 Jun 2023 14:01:16 -0500 Message-ID: <20230602190116.1790314-1-jon.murphy@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============9006727163948820014==" List-Id: --===============9006727163948820014== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable -Fixes remove entries in 'extrahd' via the webinterface for extrahd.cgi file. Suggested-by: Bernhard Bitsch Signed-off-by: Jon Murphy --- html/cgi-bin/extrahd.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/extrahd.cgi b/html/cgi-bin/extrahd.cgi index 36c0efc2e..9dd3a0eee 100644 --- a/html/cgi-bin/extrahd.cgi +++ b/html/cgi-bin/extrahd.cgi @@ -103,7 +103,7 @@ END } elsif ($extrahdsettings{'ACTION'} eq $Lang::tr{'delete'}) { - if ( &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdsett= ings{'PATH'}")) { + if ( ! &General::system("/usr/local/bin/extrahdctrl", "umount", "$extrahdse= ttings{'PATH'}")) { open( FILE, "< $devicefile" ) or die "Unable to read $devicefile"; @tmp =3D ; close FILE; --=20 2.30.2 --===============9006727163948820014==--