Skip to content

Commit 4dc8cdd

Browse files
committed
Fix NSID in prp1PRP2_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 131d416 commit 4dc8cdd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

GrpAdminGetLogPgCmd/prp1PRP2_r10b.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,12 @@ PRP1PRP2_r10b::RunCoreTest()
115115

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

120126
} // namespace

0 commit comments

Comments
 (0)