Skip to content

Commit

Permalink
Comment out "CryptoContext not initialized" warning
Browse files Browse the repository at this point in the history
Signed-off-by: Lev Stipakov <[email protected]>
  • Loading branch information
lstipakov committed Aug 29, 2022
1 parent 6a7c7a0 commit 464229a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion socket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ VOID OvpnSocketDataPacketReceived(_In_ POVPN_DEVICE device, UCHAR op, _In_reads_
else {
status = STATUS_INVALID_DEVICE_STATE;

LOG_WARN("CryptoContext not yet initialized");
// LOG_WARN("CryptoContext not yet initialized");
}

if (NT_SUCCESS(status)) {
Expand Down
2 changes: 1 addition & 1 deletion timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static VOID OvpnTimerXmit(WDFTIMER timer)
}
else {
status = STATUS_INVALID_DEVICE_STATE;
LOG_WARN("CryptoContext not initialized");
// LOG_WARN("CryptoContext not initialized");
}

if (NT_SUCCESS(status)) {
Expand Down
2 changes: 1 addition & 1 deletion txqueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ OvpnTxProcessPacket(_In_ POVPN_DEVICE device, _In_ POVPN_TXQUEUE queue, _In_ NET
}
else {
status = STATUS_INVALID_DEVICE_STATE;
LOG_WARN("CryptoContext not initialized");
// LOG_WARN("CryptoContext not initialized");
}

if (NT_SUCCESS(status)) {
Expand Down

0 comments on commit 464229a

Please sign in to comment.