Merge 3e9b7dd873f07259453b950af04ce756d8736d11 into 444945511339668c3339357c832d8f00fc9bac27

This commit is contained in:
ailin-nemui 2025-04-15 11:43:12 +02:00 committed by GitHub
commit ea6ca2c0ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ IndentCaseLabels: false
IndentWidth: 8
IndentWrappedFunctionNames: true
KeepEmptyLinesAtTheStartOfBlocks: false
Language: Cpp
# Language: Cpp
Cpp11BracedListStyle: false
MaxEmptyLinesToKeep: 1
PointerAlignment: Right

View File

@ -25,7 +25,7 @@ typedef struct {
int cmd_queue_speed;
int max_query_chans;
int starttls;
int no_cap : 1;
unsigned int no_cap : 1;
} IRC_SERVER_SETUP_REC;
void irc_servers_setup_init(void);

View File

@ -62,9 +62,9 @@ struct _IRC_SERVER_CONNECT_REC {
int max_query_chans;
int max_kicks, max_msgs, max_modes, max_whois;
int disallow_starttls:1;
int starttls:1;
int no_cap:1;
unsigned int disallow_starttls:1;
unsigned int starttls:1;
unsigned int no_cap:1;
};
/* clang-format on */