import gnome-control-center-40.0-23.el9_0
This commit is contained in:
parent
401caf0e40
commit
419ea9910d
59
SOURCES/0001-network-Fix-OWE-settings.patch
Normal file
59
SOURCES/0001-network-Fix-OWE-settings.patch
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
From 43bb1d9200554527cefaa2ce969bebc80d781c73 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ana Cabral <acabral@redhat.com>
|
||||||
|
Date: Mon, 21 Feb 2022 21:49:29 +0100
|
||||||
|
Subject: [PATCH] network: Fix OWE settings
|
||||||
|
|
||||||
|
Enhanced Open (OWE) is not being saved properly from connection-editor.
|
||||||
|
When we create a Wi-Fi connection using Enhanced Open (OWE) Security
|
||||||
|
from nm-connection-editor and save it, it was not being saved and the
|
||||||
|
security was being set as "None", with Wireless Security Setting
|
||||||
|
being discarded. This is fixed by this commit. The fix is also being
|
||||||
|
done in libnma (implementing OWE in libnma,
|
||||||
|
https://gitlab.gnome.org/GNOME/libnma/-/issues/9), but this commit
|
||||||
|
fixes meanwhile it gets ready.
|
||||||
|
|
||||||
|
It was solved by adding treatment for the case in which owe was set.
|
||||||
|
OWE is not treated anymore in the same case as None.
|
||||||
|
|
||||||
|
https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/1521
|
||||||
|
---
|
||||||
|
.../connection-editor/ce-page-security.c | 23 +++++++++++++++----
|
||||||
|
1 file changed, 19 insertions(+), 4 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/panels/network/connection-editor/ce-page-security.c b/panels/network/connection-editor/ce-page-security.c
|
||||||
|
index a63b9394a..c7cd7d940 100644
|
||||||
|
--- a/panels/network/connection-editor/ce-page-security.c
|
||||||
|
+++ b/panels/network/connection-editor/ce-page-security.c
|
||||||
|
@@ -460,10 +460,25 @@ ce_page_security_validate (CEPage *page,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
- /* No security, unencrypted */
|
||||||
|
- nm_connection_remove_setting (connection, NM_TYPE_SETTING_WIRELESS_SECURITY);
|
||||||
|
- nm_connection_remove_setting (connection, NM_TYPE_SETTING_802_1X);
|
||||||
|
- valid = TRUE;
|
||||||
|
+
|
||||||
|
+ if (gtk_combo_box_get_active ((CE_PAGE_SECURITY (self))->security_combo) == 0) {
|
||||||
|
+ /* No security, unencrypted */
|
||||||
|
+ nm_connection_remove_setting (connection, NM_TYPE_SETTING_WIRELESS_SECURITY);
|
||||||
|
+ nm_connection_remove_setting (connection, NM_TYPE_SETTING_802_1X);
|
||||||
|
+ valid = TRUE;
|
||||||
|
+ } else {
|
||||||
|
+ /* owe case:
|
||||||
|
+ * fill the connection manually until libnma implements OWE wireless security
|
||||||
|
+ */
|
||||||
|
+ NMSetting *sws;
|
||||||
|
+
|
||||||
|
+ sws = nm_setting_wireless_security_new ();
|
||||||
|
+ g_object_set (sws, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "owe", NULL);
|
||||||
|
+ nm_connection_add_setting (connection, sws);
|
||||||
|
+ nm_connection_remove_setting (connection, NM_TYPE_SETTING_802_1X);
|
||||||
|
+ valid = TRUE;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
}
|
||||||
|
|
||||||
|
return valid;
|
||||||
|
--
|
||||||
|
2.35.1
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
Name: gnome-control-center
|
Name: gnome-control-center
|
||||||
Version: 40.0
|
Version: 40.0
|
||||||
Release: 21%{?dist}
|
Release: 23%{?dist}
|
||||||
Summary: Utilities to configure the GNOME desktop
|
Summary: Utilities to configure the GNOME desktop
|
||||||
|
|
||||||
License: GPLv2+ and CC-BY-SA
|
License: GPLv2+ and CC-BY-SA
|
||||||
@ -38,6 +38,9 @@ Patch7: rpminspect-desktop-fixes.patch
|
|||||||
# Backport monitor config policy (#2046159)
|
# Backport monitor config policy (#2046159)
|
||||||
Patch8: 0001-display-Only-display-configuration-options-if-apply-.patch
|
Patch8: 0001-display-Only-display-configuration-options-if-apply-.patch
|
||||||
|
|
||||||
|
# Workaround for libnma not handling OWE https://gitlab.gnome.org/GNOME/libnma/-/issues/9
|
||||||
|
Patch9: 0001-network-Fix-OWE-settings.patch
|
||||||
|
|
||||||
BuildRequires: chrpath
|
BuildRequires: chrpath
|
||||||
BuildRequires: cups-devel
|
BuildRequires: cups-devel
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
@ -226,6 +229,15 @@ chrpath --delete $RPM_BUILD_ROOT%{_bindir}/gnome-control-center
|
|||||||
%dir %{_datadir}/gnome/wm-properties
|
%dir %{_datadir}/gnome/wm-properties
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 14 2022 Felipe Borges <feborges@redhat.com> - 40.0-23
|
||||||
|
- Backport translations for Multitasking panel
|
||||||
|
- Make Multitasking panel capable of handling Right-to-Left locales
|
||||||
|
Resolves: #2049524
|
||||||
|
|
||||||
|
* Thu Feb 24 2022 Benjamin Berg <bberg@redhat.com> - 40.0-22
|
||||||
|
- Work around libnma not handling OWE
|
||||||
|
Resolves: #2058163
|
||||||
|
|
||||||
* Fri Feb 04 2022 Jonas Ådahl <tpopela@redhat.com> - 40.0-21
|
* Fri Feb 04 2022 Jonas Ådahl <tpopela@redhat.com> - 40.0-21
|
||||||
- Backport monitor config policy
|
- Backport monitor config policy
|
||||||
Resolves: #2046159
|
Resolves: #2046159
|
||||||
|
Loading…
Reference in New Issue
Block a user