Accepting request 1126534 from home:ngueorguiev:branches:Base:System

- Fixed a logic error in read_values.c

OBS-URL: https://build.opensuse.org/request/show/1126534
OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=183
This commit is contained in:
Nikolay Gueorguiev 2023-11-15 08:00:18 +00:00 committed by Git OBS Bridge
parent ff04561a05
commit 37aa81f763
2 changed files with 6 additions and 1 deletions

View File

@ -352,7 +352,7 @@ struct utsname uts;
erg = qc_get_attribute_string(configuration_handle, qc_type, 0, &cpu_type);
if (erg == 1 && cpu_type != NULL) {
if ( check_model(cpu_type) ) {
if ( !check_model(cpu_type) ) {
goto return_does_not_exist;
} /* endif */
} /* endif */

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Nov 15 07:55:09 UTC 2023 - Nikolay Gueorguiev <nikolay.gueorguiev@suse.com>
- Fixed a logic error in read_values.c
-------------------------------------------------------------------
Mon Nov 13 13:13:11 UTC 2023 - Nikolay Gueorguiev <nikolay.gueorguiev@suse.com>