diff options
author | James Booth <boothj5@gmail.com> | 2015-10-26 23:40:37 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-10-26 23:40:37 +0000 |
commit | 0b51f4d36f4fe91147d2d06930798f84d1878a49 (patch) | |
tree | ec582f42482a433437d3741acd3b3f61e96c9f51 /src/otr | |
parent | d11f8d5ffc19ebaa2f7c1e3e44e18a92162cc0de (diff) | |
download | profani-tty-0b51f4d36f4fe91147d2d06930798f84d1878a49.tar.gz |
ui_smp_unsuccessful_receiver takes ProfChatWin
Diffstat (limited to 'src/otr')
-rw-r--r-- | src/otr/otrlibv3.c | 5 | ||||
-rw-r--r-- | src/otr/otrlibv4.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/otr/otrlibv3.c b/src/otr/otrlibv3.c index de388b8f..3fb85e0e 100644 --- a/src/otr/otrlibv3.c +++ b/src/otr/otrlibv3.c @@ -206,7 +206,10 @@ otrlib_handle_tlvs(OtrlUserState user_state, OtrlMessageAppOps *ops, ConnContext ui_smp_successful(context->username); ui_trust(context->username); } else { - ui_smp_unsuccessful_receiver(context->username); + ProfChatWin *chatwin = wins_get_chat(context->username); + if (chatwin) { + ui_smp_unsuccessful_receiver(chatwin); + } ui_untrust(context->username); } } diff --git a/src/otr/otrlibv4.c b/src/otr/otrlibv4.c index ebdc2996..acce648e 100644 --- a/src/otr/otrlibv4.c +++ b/src/otr/otrlibv4.c @@ -210,7 +210,9 @@ cb_handle_smp_event(void *opdata, OtrlSMPEvent smp_event, ui_smp_unsuccessful_sender(chatwin); } } else if (nextMsg == OTRL_SMP_EXPECT4) { - ui_smp_unsuccessful_receiver(context->username); + if (chatwin) { + ui_smp_unsuccessful_receiver(chatwin); + } } ui_untrust(context->username); } else { |