Changeset 7a9d968 for otr.c


Ignore:
Timestamp:
2018-03-10T11:30:39Z (6 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Children:
5447c59
Parents:
3f44e43 (diff), 4a9c6b0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into HEAD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • otr.c

    r3f44e43 r7a9d968  
    878878        case OTRL_SMPEVENT_ASK_FOR_SECRET:
    879879                irc_rootmsg(irc, "smp: initiated by %s"
    880                             " - respond with \x02otr smp %s <secret>\x02",
     880                            " - respond with \x02otr smp %s \"<secret>\"\x02",
    881881                            u->nick, u->nick);
    882882                break;
     
    884884                irc_rootmsg(irc, "smp: initiated by %s with question: \x02\"%s\"\x02", u->nick,
    885885                            question);
    886                 irc_rootmsg(irc, "smp: respond with \x02otr smp %s <answer>\x02",
     886                irc_rootmsg(irc, "smp: respond with \x02otr smp %s \"<answer>\"\x02",
    887887                            u->nick);
    888888                break;
     
    15141514                        }
    15151515                }
    1516                 assert(l != NULL);  /* a match should always be found */
     1516                g_return_val_if_fail(l, NULL);
    15171517                if (!l) {
    15181518                        return NULL;
Note: See TracChangeset for help on using the changeset viewer.