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

Fix GCC build errors with SANITIZE=1

scfgsys.c: In function ‘edit_sys_delmsg_policy’:
scfgsys.c:498:3: error: case label does not reduce to an integer constant
  498 |   case SM_USRVDELM | SM_SYSVDELM:
scfgsys.c:504:3: error: case label does not reduce to an integer constant
  504 |   case SM_SYSVDELM:
parent 6d37aa6b
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -165,7 +165,7 @@
#define SM_NOCDTCVT (1<<28) // No credit to minute conversions allowed
#define SM_DELEMAIL (1<<29) // Physically remove deleted e-mail immed.
#define SM_USRVDELM (1<<30) // Users can see deleted msgs
#define SM_SYSVDELM (1<<31) // Sysops can see deleted msgs
#define SM_SYSVDELM (1U<<31)// Sysops can see deleted msgs
// Bit flags for scfg_t.login
#define LOGIN_USERNUM (1<<0) // Allow logins by user number
......
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