39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
|
|
From 275e5fe562d1645683c59f777b453cc24d4c8bec Mon Sep 17 00:00:00 2001
|
||
|
|
From: =?UTF-8?q?Hyman=20Huang=28=E9=BB=84=E5=8B=87=29?=
|
||
|
|
<huangy81@chinatelecom.cn>
|
||
|
|
Date: Mon, 5 Dec 2022 08:07:40 -0500
|
||
|
|
Subject: [PATCH 24/24] lxc: Fix syntax error in lxcNodeGetSecurityModel
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
Fix syntax error, which is introduced by the following commit
|
||
|
|
be72edbfc14440cceb63fa2d38811e5cbd962ad8
|
||
|
|
|
||
|
|
Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
|
||
|
|
---
|
||
|
|
src/lxc/lxc_driver.c | 4 ++--
|
||
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/src/lxc/lxc_driver.c b/src/lxc/lxc_driver.c
|
||
|
|
index aa4cddc275..120d41f2b6 100644
|
||
|
|
--- a/src/lxc/lxc_driver.c
|
||
|
|
+++ b/src/lxc/lxc_driver.c
|
||
|
|
@@ -1241,11 +1241,11 @@ static int lxcNodeGetSecurityModel(virConnectPtr conn,
|
||
|
|
memset(secmodel, 0, sizeof(*secmodel));
|
||
|
|
|
||
|
|
if (virNodeGetSecurityModelEnsureACL(conn) < 0) {
|
||
|
|
- ret = -1;
|
||
|
|
+ ret = -1;
|
||
|
|
}
|
||
|
|
|
||
|
|
if (!(caps = virLXCDriverGetCapabilities(driver, false))) {
|
||
|
|
- return = -1;
|
||
|
|
+ ret = -1;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* we treat no driver as success, but simply return no data in *secmodel */
|
||
|
|
--
|
||
|
|
2.27.0
|
||
|
|
|