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
commit84e2d7fd52276a867a26a4be98144611fc8b6e5e (patch)
treec37825db2ed14c7bcf098584af6a4dbdd5f30f4a
parent84a80f54fa5caf3eef159e480b2da7b7811b7cf7 (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},