import NetworkManager-1.39.12-1.el8
This commit is contained in:
parent
811fa0ce20
commit
ab1353bfbe
@ -1 +1 @@
|
||||
b8fb396eceb48f4ae2738386abdf155cf8185c55 SOURCES/NetworkManager-1.39.10.tar.xz
|
||||
1359a60d7996dab352b2fe12e64e021c35b7b4f3 SOURCES/NetworkManager-1.39.12.tar.xz
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/NetworkManager-1.39.10.tar.xz
|
||||
SOURCES/NetworkManager-1.39.12.tar.xz
|
||||
|
||||
@ -26,8 +26,8 @@ index 87cb87bf2b4e..ba3bb19f57ce 100644
|
||||
naddresses = nm_setting_ip_config_get_num_addresses(s_ip);
|
||||
for (i = 0; i < naddresses; i++) {
|
||||
- NMIPAddress *s_addr = nm_setting_ip_config_get_address(s_ip, i);
|
||||
+ const guint idx = IS_IPv4 ? i : (naddresses - i - 1);
|
||||
+ NMIPAddress *s_addr = nm_setting_ip_config_get_address(s_ip, idx);
|
||||
+ const guint addr_idx = IS_IPv4 ? i : (naddresses - i - 1);
|
||||
+ NMIPAddress *s_addr = nm_setting_ip_config_get_address(s_ip, addr_idx);
|
||||
NMPlatformIPXAddress a;
|
||||
NMIPAddr addr_bin;
|
||||
GVariant *label;
|
||||
|
||||
@ -1,17 +1,16 @@
|
||||
|
||||
%global wpa_supplicant_version 1:1.1
|
||||
|
||||
%global ppp_version %(sed -n 's/^#define\\s*VERSION\\s*"\\([^\\s]*\\)"$/\\1/p' %{_includedir}/pppd/patchlevel.h 2>/dev/null | grep . || echo bad)
|
||||
%global glib2_version %(pkg-config --modversion glib-2.0 2>/dev/null || echo bad)
|
||||
|
||||
%global epoch_version 1
|
||||
%global real_version 1.39.10
|
||||
%global real_version 1.39.12
|
||||
%global rpm_version %{real_version}
|
||||
%global release_version 1
|
||||
%global snapshot %{nil}
|
||||
%global git_sha %{nil}
|
||||
%global bcond_default_debug 0
|
||||
%global bcond_default_test 0
|
||||
%global bcond_default_test 1
|
||||
|
||||
%global obsoletes_device_plugins 1:0.9.9.95-1
|
||||
%global obsoletes_ppp_plugin 1:1.5.3
|
||||
@ -1232,6 +1231,15 @@ fi
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 29 2022 Lubomir Rintel <lkundrak@v3.sk> - 1:1.39.12-1
|
||||
- Update to 1.39.12 release (development)
|
||||
- bridge: fix reapply support (rh #2092762)
|
||||
|
||||
* Thu Jul 28 2022 Beniamino Galvani <bgalvani@redhat.com> - 1:1.39.11-1
|
||||
- Update to 1.39.11 release (development)
|
||||
- dhcp: fix EXTENDED DHCP event to accept lease for dhclient plugin (rh #2109285)
|
||||
- ovs: honor unmanaged setting also for interfaces that fail (rh #2077950)
|
||||
|
||||
* Thu Jul 14 2022 Vojtech Bubela <vbubela@redhat.com> - 1:1.39.10-1
|
||||
- Update to 1.39.10 release (development)
|
||||
- initrd: set a default carrier timeout of 10 seconds in initrd (rh #2079277)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user