Merge branch 'unreal50' of github.com:unrealircd/unrealircd into unreal50

This commit is contained in:
Bram Matthys 2020-05-14 09:15:24 +02:00
commit 81c7e6ca05
No known key found for this signature in database
GPG key ID: BF8116B163EAAE98
2 changed files with 2 additions and 0 deletions
include
src

View file

@ -885,6 +885,7 @@ extern char *certificate_name(SSL *ssl);
extern void start_of_normal_client_handshake(Client *acptr);
extern void clicap_pre_rehash(void);
extern void clicap_post_rehash(void);
extern void unload_all_unused_mtag_handlers(void);
extern void send_cap_notify(int add, char *token);
extern void sendbufto_one(Client *to, char *msg, unsigned int quick);
extern MODVAR int current_serial;

View file

@ -2135,6 +2135,7 @@ int init_conf(char *rootconf, int rehash)
postconf();
config_status("Configuration loaded.");
clicap_post_rehash();
unload_all_unused_mtag_handlers();
return 0;
}