Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • otr.c

    r9f03c47 ra1c92dd  
    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.