Skip to content

Commit

Permalink
emsmdb: fix two overlapping log message ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jengelh committed Nov 29, 2023
1 parent 571c9c0 commit 0442e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exch/emsmdb/icsdownctx_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -532,15 +532,15 @@ static BOOL icsdownctx_object_extract_msgctntinfo(MESSAGE_CONTENT *pmsgctnt,

auto ts = pmsgctnt->proplist.get<const uint64_t>(PR_LAST_MODIFICATION_TIME);
if (ts == nullptr) {
mlog(LV_INFO, "I-2385: ICS: cannot transfer msg %llxh without PR_LAST_MODIFICATION_TIME\n",
mlog(LV_INFO, "I-2363: ICS: cannot transfer msg %llxh without PR_LAST_MODIFICATION_TIME",
LLU{message_id});
return FALSE;
}
pchgheader->emplace_back(PR_LAST_MODIFICATION_TIME, ts);

bin = pmsgctnt->proplist.get<BINARY>(PR_CHANGE_KEY);
if (bin == nullptr) {
mlog(LV_INFO, "I-2383: ICS: cannot transfer msg %llxh without PR_CHANGE_KEY\n",
mlog(LV_INFO, "I-2362: ICS: cannot transfer msg %llxh without PR_CHANGE_KEY\n",
LLU{message_id});
return FALSE;
}
Expand Down

0 comments on commit 0442e1a

Please sign in to comment.