summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarkko Koivikko <jarkko.koivikko@code-q.fi>2021-09-06 14:29:35 +0300
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-09-06 12:34:36 +0000
commit896b1bb9d1fa22db565678eed4bfee35b0703628 (patch)
tree82e39a0c25ac2fef4585602fd0805aac8aa1da4e
parent0b4ced53c2b36a84fe7d1a05955137213cc0c144 (diff)
windeployqt: Fix deployment of tls plugins
Since Qt 6.x the bearer plugins are gone. Reuse that entry for tls plugins. Fixes: QTBUG-95247 Change-Id: I68f8b20942375b124ba9859c23f1b1c770ab406c Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit cd8a01945c47956913739fadd047b5948cf89fed) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/windeployqt/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index 7b3cb82e6..56f4d1062 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -827,7 +827,7 @@ static const PluginModuleMapping pluginModuleMappings[] =
{"audio", QtMultimediaModule},
{"mediaservice", QtMultimediaModule},
{"playlistformats", QtMultimediaModule},
- {"bearer", QtNetworkModule},
+ {"tls", QtNetworkModule},
{"position", QtPositioningModule},
{"printsupport", QtPrintSupportModule},
{"scenegraph", QtQuickModule},