Changeset 7c91392
- Timestamp:
- 2010-10-01T20:14:45Z (14 years ago)
- Branches:
- master
- Children:
- f26db4a8
- Parents:
- 03e5fb7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
otr.c
r03e5fb7 r7c91392 158 158 159 159 /* combined handler for the 'otr smp' and 'otr smpq' commands */ 160 void otr_ initiate_smp(irc_t *irc, const char *nick, const char *question,160 void otr_smp_or_smpq(irc_t *irc, const char *nick, const char *question, 161 161 const char *secret); 162 162 … … 738 738 void cmd_otr_smp(irc_t *irc, char **args) 739 739 { 740 otr_ initiate_smp(irc, args[1], NULL, args[2]); /* no question */740 otr_smp_or_smpq(irc, args[1], NULL, args[2]); /* no question */ 741 741 } 742 742 743 743 void cmd_otr_smpq(irc_t *irc, char **args) 744 744 { 745 otr_ initiate_smp(irc, args[1], args[2], args[3]);745 otr_smp_or_smpq(irc, args[1], args[2], args[3]); 746 746 } 747 747 … … 1163 1163 1164 1164 /* combined handler for the 'otr smp' and 'otr smpq' commands */ 1165 void otr_ initiate_smp(irc_t *irc, const char *nick, const char *question,1165 void otr_smp_or_smpq(irc_t *irc, const char *nick, const char *question, 1166 1166 const char *secret) 1167 1167 {
Note: See TracChangeset
for help on using the changeset viewer.