diff options
author | Marius Halden <marius.h@lden.org> | 2016-05-26 15:07:34 +0200 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-05-26 15:07:34 +0200 |
commit | 3448d86a3f329ec4d625bd72e64a96061e71e675 (patch) | |
tree | ff41da0d1f55d449b24a91e4b7a91cab0cbcc84d /otr.c | |
parent | 8e4d9a1769a7d566278ed95d94a1cabd8fdc62e7 (diff) | |
parent | 59a7dc58dcf39b7eaed2015423f8a4fc2da3c7fd (diff) |
Merge branch 'master' into patched-master
Diffstat (limited to 'otr.c')
-rw-r--r-- | otr.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -267,6 +267,22 @@ void init_plugin(void) register_irc_plugin(&otr_plugin); } +#ifndef OTR_BI +struct plugin_info *init_plugin_info(void) +{ + static struct plugin_info info = { + BITLBEE_ABI_VERSION_CODE, + "otr", + BITLBEE_VERSION, + "Off-the-Record communication", + NULL, + NULL + }; + + return &info; +} +#endif + gboolean otr_irc_new(irc_t *irc) { set_t *s; |