From 82c25f4fee81e124416c2a87085d8986b360bf7d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20Olivier?= <aurelien@aolivier.eu>
Date: Sat, 17 Nov 2018 11:03:30 +0100
Subject: [PATCH] Remove double quotes when parsing $result

---
 handlers/mysql.helper.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/handlers/mysql.helper.in b/handlers/mysql.helper.in
index 6501d60..02c8055 100644
--- a/handlers/mysql.helper.in
+++ b/handlers/mysql.helper.in
@@ -75,9 +75,9 @@ do_mysql_final() {
    compress="compress = no"
    for opt in $result; do
       case $opt in
-         '"sqldump"') sqldump="sqldump = yes";;
-         '"hotcopy"') hotcopy="hotcopy = yes";;
-         '"compress"') compress="compress = yes";;
+         'sqldump') sqldump="sqldump = yes";;
+         'hotcopy') hotcopy="hotcopy = yes";;
+         'compress') compress="compress = yes";;
       esac
    done
    get_next_filename $configdirectory/20.mysql
-- 
GitLab