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

Fix: Some integer fields were defined as type:"str"

parent af234f11
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -165,9 +165,9 @@ struct.phub_t={ ...@@ -165,9 +165,9 @@ struct.phub_t={
days: {bytes:1, type:"str"}, days: {bytes:1, type:"str"},
name: {bytes:11, type:"str"}, name: {bytes:11, type:"str"},
call: {bytes:LEN_CMD+1, type:"str"}, call: {bytes:LEN_CMD+1, type:"str"},
time: {bytes:UINT16_T, type:"str"}, time: {bytes:UINT16_T, type:"int"},
node: {bytes:UINT16_T, type:"str"}, node: {bytes:UINT16_T, type:"int"},
freq: {bytes:UINT16_T, type:"str"}, freq: {bytes:UINT16_T, type:"int"},
// time32_t last; /* Last network attempt */ // time32_t last; /* Last network attempt */
__PADDING__:{bytes:64} __PADDING__:{bytes:64}
}; };
...@@ -352,8 +352,8 @@ struct.msg={ ...@@ -352,8 +352,8 @@ struct.msg={
__PADDING6__: {bytes:64}, __PADDING6__: {bytes:64},
sys_inetaddr: {bytes:128, type:"str"}, sys_inetaddr: {bytes:128, type:"str"},
inetmail_sem: {bytes:LEN_DIR+1, type:"str"}, inetmail_sem: {bytes:LEN_DIR+1, type:"str"},
inetmail_misc: {bytes:UINT32_T, type:"str"}, inetmail_misc: {bytes:UINT32_T, type:"int"},
inetmail_cost: {bytes:UINT32_T, type:"str"}, inetmail_cost: {bytes:UINT32_T, type:"int"},
smtpmail_sem: {bytes:LEN_DIR+1, type:"str"} smtpmail_sem: {bytes:LEN_DIR+1, type:"str"}
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment