[Bugfix][API-1509] fix can't connect ssid with double quotation mark

Only Configure: No
Affected branch: all
Affected module: wifi
Is it affected on both ZXIC and MTK: only MTK
Self-test: Yes
Doc Update: No

Change-Id: I9b036e3674b7c64dedcca1c37b053c72d8b61b0b
diff --git a/lib/liblynq-wifi6/libwifi6.c b/lib/liblynq-wifi6/libwifi6.c
index 3c42b83..60c4224 100755
--- a/lib/liblynq-wifi6/libwifi6.c
+++ b/lib/liblynq-wifi6/libwifi6.c
@@ -1677,6 +1677,11 @@
             {
                 out_ssid[pos] = '\n';
                 p += 2;
+            }
+            else
+            {
+                out_ssid[pos] = p[1];
+                p += 2;
             }//todo find a better way to convert?
         }
     }