aboutsummaryrefslogtreecommitdiffstats
path: root/otr.c
diff options
context:
space:
mode:
authorTroy Sankey <sankeytms@gmail.com>2017-10-04 13:28:55 -0400
committerTroy Sankey <sankeytms@gmail.com>2017-10-04 13:28:55 -0400
commita1c92ddfe4e8fbd01b13937f7d771cccc67ddeb5 (patch)
tree2b5229b561bfdbdc1f177eda88a77c5ea0abf49f /otr.c
parentad66dcd65ee6e84f25fdb46956df0ad3041d0ced (diff)
Add quotations around <answer> and <secret> in the otr docs
The user doesn't otherwise know how to type answers or secrets containing spaces.
Diffstat (limited to 'otr.c')
-rw-r--r--otr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/otr.c b/otr.c
index 2a2385ce..ec1c1a3c 100644
--- a/otr.c
+++ b/otr.c
@@ -877,13 +877,13 @@ void op_handle_smp_event(void *opdata, OtrlSMPEvent ev, ConnContext *ctx,
switch (ev) {
case OTRL_SMPEVENT_ASK_FOR_SECRET:
irc_rootmsg(irc, "smp: initiated by %s"
- " - respond with \x02otr smp %s <secret>\x02",
+ " - respond with \x02otr smp %s \"<secret>\"\x02",
u->nick, u->nick);
break;
case OTRL_SMPEVENT_ASK_FOR_ANSWER:
irc_rootmsg(irc, "smp: initiated by %s with question: \x02\"%s\"\x02", u->nick,
question);
- irc_rootmsg(irc, "smp: respond with \x02otr smp %s <answer>\x02",
+ irc_rootmsg(irc, "smp: respond with \x02otr smp %s \"<answer>\"\x02",
u->nick);
break;
case OTRL_SMPEVENT_CHEATED: