1 Star 0 Fork 6

twtlpl/drbd

forked from src-openEuler/drbd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backport-DRBDmon-Fix-CfgEntryStore-UUID.patch 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
twtlpl 提交于 2024-10-31 19:43 . DRBDmon: Fix CfgEntryStore UUID
From b866a79c81a7dc1f087d0c4d64b34ab05a234dfb Mon Sep 17 00:00:00 2001
From: Robert Altnoeder <robert.altnoeder@linbit.com>
Date: Tue, 5 Mar 2024 16:54:44 +0100
Subject: [PATCH 077/100] DRBDmon: Fix CfgEntryStore UUID
The UUID string was mistyped, missing an x character after a backslash,
thereby resulting in the actual UUID
6A454A5D-347A-498D-8E0A-6AD5F5014133
(instead of 6A454A5D-347A-498D-8E0A-6AD5F51A3399, which is what the
comment originally said).
---
user/drbdmon/configuration/CfgEntryStore.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/user/drbdmon/configuration/CfgEntryStore.cpp b/user/drbdmon/configuration/CfgEntryStore.cpp
index c047368c..6573d568 100644
--- a/user/drbdmon/configuration/CfgEntryStore.cpp
+++ b/user/drbdmon/configuration/CfgEntryStore.cpp
@@ -8,8 +8,8 @@
#include <cstring>
// Configuration Entry Store UUID
-// Variant 1 Version 4 (random): 6A454A5D-347A-498D-8E0A-6AD5F51A3399
-const std::string CfgEntryStore::CES_UUID("\x6A\x45\x4A\x5D\x34\x7A\x49\x8D\x8E\x0A\x6A\xD5\xF5\1A\x33\x99");
+// Variant 1 Version 4 (random): 6A454A5D-347A-498D-8E0A-6AD5F5014133
+const std::string CfgEntryStore::CES_UUID("\x6A\x45\x4A\x5D\x34\x7A\x49\x8D\x8E\x0A\x6A\xD5\xF5\x01\x41\x33");
// Configuration Entry Store Version: Major version (16 bits), minor version (16 bits)
// Minor versions are supposed to be backwards compatible
--
2.33.1.windows.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/twtlpl/drbd.git
git@gitee.com:twtlpl/drbd.git
twtlpl
drbd
drbd
master

搜索帮助