diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-23 12:15:52 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-23 12:15:52 +0200 |
| commit | f5ed9f8a41b760a659e23f8c2a72d1ca73f3b826 (patch) | |
| tree | 87e8d51550a891f69cbad8d68c8cac96c49affed /dev/ZKA/Sources/Network | |
| parent | 4cd60b0edc5dee45d6a0e31931f79dff4d611865 (diff) | |
[WIP] Adding Security system DLL for handling user logins and logoffs.
- Fixing local user API. This API is used by the objects in order to
gain authorization over another object.
- Refer to sec.dll for mutli-user experience.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/Sources/Network')
| -rw-r--r-- | dev/ZKA/Sources/Network/IPC.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ZKA/Sources/Network/IPC.cxx b/dev/ZKA/Sources/Network/IPC.cxx index f703e650..926224d9 100644 --- a/dev/ZKA/Sources/Network/IPC.cxx +++ b/dev/ZKA/Sources/Network/IPC.cxx @@ -14,7 +14,7 @@ using namespace Kernel; /// @brief The internal sanitize function. Bool ipc_int_sanitize_packet(IPC_MESSAGE_STRUCT* pckt) { - auto endian = DEDUCE_ENDIAN(pckt, ((char*)pckt)[0]); + auto endian = DEDUCE_ENDIAN(pckt, ((Char*)pckt)[0]); switch (endian) { |
