From 08a0bc9b051ecb55dd492ee07a087f719af3a6db Mon Sep 17 00:00:00 2001 From: Shengliang Guan Date: Mon, 14 Feb 2022 22:43:17 +0800 Subject: [PATCH] minor changes --- source/dnode/mgmt/impl/test/sut/src/sut.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dnode/mgmt/impl/test/sut/src/sut.cpp b/source/dnode/mgmt/impl/test/sut/src/sut.cpp index e91fbd2fb7..61119c4308 100644 --- a/source/dnode/mgmt/impl/test/sut/src/sut.cpp +++ b/source/dnode/mgmt/impl/test/sut/src/sut.cpp @@ -82,7 +82,7 @@ SRpcMsg* Testbase::SendReq(tmsg_t msgType, void* pCont, int32_t contLen) { void Testbase::SendShowMetaReq(int8_t showType, const char* db) { SShowReq showReq = {0}; showReq.type = showType; - //strcpy(showReq.db, db); + strcpy(showReq.db, db); int32_t contLen = tSerializeSShowReq(NULL, 0, &showReq); char* pReq = (char*)rpcMallocCont(contLen);