Skip to content

Commit 3bc37a2

Browse files
committed
Fix NSID in prp1_r10b.cpp
According to spec v.1_0b : "a value of FFFFFFFFh is used to specify that the global values should be returned." Therefore added code block sets NSID to FFFFFFFFh then returns the globals.
1 parent 4dc8cdd commit 3bc37a2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

GrpAdminGetLogPgCmd/prp1_r10b.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,12 @@ PRP1_r10b::RunCoreTest()
114114

115115
IO::SendAndReapCmd(mGrpName, mTestName, CALC_TIMEOUT_ms(1), asq, acq,
116116
getLogPgCmd, "prp1only", true);
117+
118+
i = 0xffffffff;
119+
getLogPgCmd->SetNSID(i);
120+
work = str(boost::format("namspc%d") % i);
121+
IO::SendAndReapCmd(mGrpName, mTestName, CALC_TIMEOUT_ms(1), asq, acq,
122+
getLogPgCmd, work, true);
117123
}
118124

119125
} // namespace

0 commit comments

Comments
 (0)