!23 修TRUE未修复
From: @lixiaokeng Reviewed-by: @wguanghao,@wubo009 Signed-off-by: @wubo009
This commit is contained in:
commit
887bbde3be
40
0026-fix-boolean-value-with-json-c-0.14.patch
Normal file
40
0026-fix-boolean-value-with-json-c-0.14.patch
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
From 82129852d74785267f95ef598ac483ff9af38a55 Mon Sep 17 00:00:00 2001
|
||||||
|
From: "mail@eworm.de" <mail@eworm.de>
|
||||||
|
Date: Sat, 25 Apr 2020 21:11:13 +0200
|
||||||
|
Subject: [PATCH] fix boolean value with json-c 0.14
|
||||||
|
|
||||||
|
Upstream json-c removed the TRUE and FALSE defines in commit
|
||||||
|
0992aac61f8b087efd7094e9ac2b84fa9c040fcd.
|
||||||
|
|
||||||
|
[mwilck]: Use stdbool.h, and keep the log message unchanged.
|
||||||
|
|
||||||
|
Signed-off-by: Christian Hesse <mail@eworm.de>
|
||||||
|
Signed-off-by: Martin Wilck <mwilck@suse.com>
|
||||||
|
---
|
||||||
|
libdmmp/libdmmp_private.h | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/libdmmp/libdmmp_private.h b/libdmmp/libdmmp_private.h
|
||||||
|
index ac85b63..b1a6dde 100644
|
||||||
|
--- a/libdmmp/libdmmp_private.h
|
||||||
|
+++ b/libdmmp/libdmmp_private.h
|
||||||
|
@@ -30,6 +30,7 @@
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <assert.h>
|
||||||
|
+#include <stdbool.h>
|
||||||
|
#include <json.h>
|
||||||
|
|
||||||
|
#include "libdmmp/libdmmp.h"
|
||||||
|
@@ -82,7 +83,7 @@ static out_type func_name(struct dmmp_context *ctx, const char *var_name) { \
|
||||||
|
do { \
|
||||||
|
json_type j_type = json_type_null; \
|
||||||
|
json_object *j_obj_tmp = NULL; \
|
||||||
|
- if (json_object_object_get_ex(j_obj, key, &j_obj_tmp) != TRUE) { \
|
||||||
|
+ if (json_object_object_get_ex(j_obj, key, &j_obj_tmp) != true) { \
|
||||||
|
_error(ctx, "Invalid JSON output from multipathd IPC: " \
|
||||||
|
"key '%s' not found", key); \
|
||||||
|
rc = DMMP_ERR_IPC_ERROR; \
|
||||||
|
--
|
||||||
|
1.8.3.1
|
||||||
|
|
||||||
@ -1,6 +1,6 @@
|
|||||||
Name: multipath-tools
|
Name: multipath-tools
|
||||||
Version: 0.8.4
|
Version: 0.8.4
|
||||||
Release: 2
|
Release: 3
|
||||||
Summary: Tools to manage multipath devices with the device-mapper
|
Summary: Tools to manage multipath devices with the device-mapper
|
||||||
License: GPLv2-or-later and LGPLv2+
|
License: GPLv2-or-later and LGPLv2+
|
||||||
URL: http://christophe.varoqui.free.fr/
|
URL: http://christophe.varoqui.free.fr/
|
||||||
@ -29,11 +29,11 @@ Patch18: 0018-bugfix-clear-mpp-path-reference-when-path-is-freed-otherwis.patch
|
|||||||
Patch19: 0019-bugfix-libmultipath-fix-memory-leak-in-disassemble_map.patch
|
Patch19: 0019-bugfix-libmultipath-fix-memory-leak-in-disassemble_map.patch
|
||||||
Patch20: 0020-fix-find-multipath-failure.patch
|
Patch20: 0020-fix-find-multipath-failure.patch
|
||||||
Patch21: 0021-change-kpartx-file-and-default-bindir.patch
|
Patch21: 0021-change-kpartx-file-and-default-bindir.patch
|
||||||
Patch22:0022-master-libmultipath-fix-use-after-free-when-iscsi-lo.patch
|
Patch22: 0022-master-libmultipath-fix-use-after-free-when-iscsi-lo.patch
|
||||||
Patch23:0023-libmultipath-warn-if-freeing-path-that-holds-mpp-hwe.patch
|
Patch23: 0023-libmultipath-warn-if-freeing-path-that-holds-mpp-hwe.patch
|
||||||
Patch24:0024-libmultipath-warn-about-NULL-value-of-mpp-hwe.patch
|
Patch24: 0024-libmultipath-warn-about-NULL-value-of-mpp-hwe.patch
|
||||||
Patch25:0025-libmultipath-fix-mpp-hwe-handling-in-sync_paths.patch
|
Patch25: 0025-libmultipath-fix-mpp-hwe-handling-in-sync_paths.patch
|
||||||
|
Patch26: 0026-fix-boolean-value-with-json-c-0.14.patch
|
||||||
BuildRequires: gcc, libaio-devel, userspace-rcu-devel, device-mapper-devel >= 1.02.89
|
BuildRequires: gcc, libaio-devel, userspace-rcu-devel, device-mapper-devel >= 1.02.89
|
||||||
BuildRequires: libselinux-devel, libsepol-devel, readline-devel, ncurses-devel, git
|
BuildRequires: libselinux-devel, libsepol-devel, readline-devel, ncurses-devel, git
|
||||||
BuildRequires: systemd-units, systemd-devel, json-c-devel, perl-interpreter, pkgconfig
|
BuildRequires: systemd-units, systemd-devel, json-c-devel, perl-interpreter, pkgconfig
|
||||||
@ -173,6 +173,12 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 25 2020 lixiaokeng<lixiaokeng@huawei.com> - 0.8.4-3
|
||||||
|
- Type:bugfix
|
||||||
|
- ID:NA
|
||||||
|
- SUG:NA
|
||||||
|
- DESC:fix boolean value for TRUE deleted
|
||||||
|
|
||||||
* Tue Sep 01 2020 lixiaokeng<lixiaokeng@huawei.com> - 0.8.4-2
|
* Tue Sep 01 2020 lixiaokeng<lixiaokeng@huawei.com> - 0.8.4-2
|
||||||
- Type:bugfix
|
- Type:bugfix
|
||||||
- ID:NA
|
- ID:NA
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user