Mercurial > hg > orthanc
diff OrthancServer/Sources/ServerJobs/SplitStudyJob.cpp @ 4819:70d2a97ca8cb openssl-3.x
integration mainline->openssl-3.x
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 25 Nov 2021 13:12:32 +0100 |
parents | 783f8a048035 94616af363ec |
children | 2e71a08eea15 |
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerJobs/SplitStudyJob.cpp Mon Aug 30 22:21:24 2021 +0200 +++ b/OrthancServer/Sources/ServerJobs/SplitStudyJob.cpp Thu Nov 25 13:12:32 2021 +0100 @@ -131,8 +131,8 @@ toStore->SetOrigin(origin_); std::string modifiedInstance; - if (GetContext().Store(modifiedInstance, *toStore, - StoreInstanceMode_Default) != StoreStatus_Success) + ServerContext::StoreResult result = GetContext().Store(modifiedInstance, *toStore, StoreInstanceMode_Default); + if (result.GetStatus() != StoreStatus_Success) { LOG(ERROR) << "Error while storing a modified instance " << instance; return false;