about summary refs log tree commit diff stats
path: root/src/otr
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-10-26 23:50:56 +0000
committerJames Booth <boothj5@gmail.com>2015-10-26 23:50:56 +0000
commit8bd74cefcf73772a52b40c919a1e70da90be8a33 (patch)
tree225fc4829a86c8ef951ee330286b3ebde8800039 /src/otr
parent3cea2bc4f4ae6d57cf4cdead868c1e02311aca40 (diff)
downloadprofani-tty-8bd74cefcf73772a52b40c919a1e70da90be8a33.tar.gz
ui_smp_successful takes ProfChatWin
Diffstat (limited to 'src/otr')
-rw-r--r--src/otr/otrlibv3.c12
-rw-r--r--src/otr/otrlibv4.c4
2 files changed, 11 insertions, 5 deletions
diff --git a/src/otr/otrlibv3.c b/src/otr/otrlibv3.c
index b12abbff..05083dea 100644
--- a/src/otr/otrlibv3.c
+++ b/src/otr/otrlibv3.c
@@ -177,11 +177,13 @@ otrlib_handle_tlvs(OtrlUserState user_state, OtrlMessageAppOps *ops, ConnContext
         } else {
             context->smstate->nextExpected = OTRL_SMP_EXPECT1;
             if (context->smstate->received_question == 0) {
+                ProfChatWin *chatwin = wins_get_chat(context->username);
                 if (context->active_fingerprint->trust && (context->active_fingerprint->trust[0] != '\0')) {
-                    ui_smp_successful(context->username);
+                    if (chatwin) {
+                        ui_smp_successful(chatwin);
+                    }
                     ui_trust(context->username);
                 } else {
-                    ProfChatWin *chatwin = wins_get_chat(context->username);
                     if (chatwin) {
                         ui_smp_unsuccessful_sender(chatwin);
                     }
@@ -202,11 +204,13 @@ otrlib_handle_tlvs(OtrlUserState user_state, OtrlMessageAppOps *ops, ConnContext
             otrl_message_abort_smp(user_state, ops, NULL, context);
         } else {
             context->smstate->nextExpected = OTRL_SMP_EXPECT1;
+            ProfChatWin *chatwin = wins_get_chat(context->username);
             if (context->active_fingerprint->trust && (context->active_fingerprint->trust[0] != '\0')) {
-                ui_smp_successful(context->username);
+                if (chatwin) {
+                    ui_smp_successful(chatwin);
+                }
                 ui_trust(context->username);
             } else {
-                ProfChatWin *chatwin = wins_get_chat(context->username);
                 if (chatwin) {
                     ui_smp_unsuccessful_receiver(chatwin);
                 }
diff --git a/src/otr/otrlibv4.c b/src/otr/otrlibv4.c
index 089585fb..29d6d57a 100644
--- a/src/otr/otrlibv4.c
+++ b/src/otr/otrlibv4.c
@@ -196,7 +196,9 @@ cb_handle_smp_event(void *opdata, OtrlSMPEvent smp_event,
 
         case OTRL_SMPEVENT_SUCCESS:
             if (context->smstate->received_question == 0) {
-                ui_smp_successful(context->username);
+                if (chatwin) {
+                    ui_smp_successful(chatwin);
+                }
                 ui_trust(context->username);
             } else {
                 ui_smp_answer_success(context->username);