- Timestamp:
- 2018-03-10T11:30:39Z (7 years ago)
- 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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
otr.c
r3f44e43 r7a9d968 878 878 case OTRL_SMPEVENT_ASK_FOR_SECRET: 879 879 irc_rootmsg(irc, "smp: initiated by %s" 880 " - respond with \x02otr smp %s <secret>\x02",880 " - respond with \x02otr smp %s \"<secret>\"\x02", 881 881 u->nick, u->nick); 882 882 break; … … 884 884 irc_rootmsg(irc, "smp: initiated by %s with question: \x02\"%s\"\x02", u->nick, 885 885 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", 887 887 u->nick); 888 888 break; … … 1514 1514 } 1515 1515 } 1516 assert(l != NULL); /* a match should always be found */1516 g_return_val_if_fail(l, NULL); 1517 1517 if (!l) { 1518 1518 return NULL;
Note: See TracChangeset
for help on using the changeset viewer.