Skip to content
Snippets Groups Projects
Commit 28e82590 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

node_t definition had wrong size on 64-bit systems (!)

This would cause errors reading node.dab when running xsdk doors built for 64-bit *nix targets
(e.g. SBJ, TBD, dpoker, etc.). I can't believe how long this has been broken. Wow.
parent 46ebd425
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4014 failed
......@@ -377,11 +377,11 @@ typedef struct _PACK { /* Node information kept in NODE.DAB */
uchar status, /* Current Status of Node */
errors, /* Number of Critical Errors */
action; /* Action User is doing on Node */
ushort useron, /* User on Node */
uint16_t useron, /* User on Node */
connection, /* Connection rate of Node */
misc, /* Miscellaneous bits for node */
aux; /* Auxillary word for node */
ulong extaux; /* Extended aux dword for node */
uint32_t extaux; /* Extended aux dword for node */
} node_t;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment