Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • otr.c

    r9f03c47 r47ab9a9  
    268268}
    269269
    270 #ifndef OTR_BI
    271 struct plugin_info *init_plugin_info(void)
    272 {
    273         static struct plugin_info info = {
    274                 BITLBEE_ABI_VERSION_CODE,
    275                 "otr",
    276                 BITLBEE_VERSION,
    277                 "Off-the-Record communication",
    278                 NULL,
    279                 NULL
    280         };
    281 
    282         return &info;
    283 }
    284 #endif
    285 
    286270gboolean otr_irc_new(irc_t *irc)
    287271{
     
    429413
    430414        /* don't do OTR on certain (not classic IM) protocols, e.g. twitter */
    431         if (a->prpl->options & PRPL_OPT_NOOTR) {
     415        if (a->prpl->options & OPT_NOOTR) {
    432416                return 0;
    433417        }
     
    457441
    458442        /* don't do OTR on certain (not classic IM) protocols, e.g. twitter */
    459         if (ic->acc->prpl->options & PRPL_OPT_NOOTR ||
     443        if (ic->acc->prpl->options & OPT_NOOTR ||
    460444            iu->bu->flags & BEE_USER_NOOTR) {
    461445                return msg;
     
    14001384void display_otr_message(void *opdata, ConnContext *ctx, const char *fmt, ...)
    14011385{
    1402         char *msg_, *msg;
    14031386        struct im_connection *ic =
    14041387                check_imc(opdata, ctx->accountname, ctx->protocol);
     
    14081391
    14091392        va_start(va, fmt);
    1410         msg_ = g_strdup_vprintf(fmt, va);
     1393        char *msg = g_strdup_vprintf(fmt, va);
    14111394        va_end(va);
    1412 
    1413         msg = word_wrap(msg_, IRC_WORD_WRAP);
    14141395
    14151396        if (u) {
     
    14201401        }
    14211402
    1422         g_free(msg_);
    14231403        g_free(msg);
    14241404}
Note: See TracChangeset for help on using the changeset viewer.