diff options
author | James Booth <boothj5@gmail.com> | 2016-08-18 22:51:06 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-08-18 22:53:23 +0100 |
commit | a978bb12bf0235be9e57e0e08b6328acc88add8b (patch) | |
tree | f5245c813a82bcbcf5d403ceed2c9ec189abc3e0 /tests/unittests/otr | |
parent | 71dcb2e427ec3e7e15f2131f18d64b84fc6230f8 (diff) | |
download | profani-tty-a978bb12bf0235be9e57e0e08b6328acc88add8b.tar.gz |
Send receipt request only when receiver supports feature
issue #829
Diffstat (limited to 'tests/unittests/otr')
-rw-r--r-- | tests/unittests/otr/stub_otr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/otr/stub_otr.c b/tests/unittests/otr/stub_otr.c index 098484d5..5070a66c 100644 --- a/tests/unittests/otr/stub_otr.c +++ b/tests/unittests/otr/stub_otr.c @@ -45,7 +45,7 @@ char* otr_on_message_recv(const char * const barejid, const char * const resourc { return NULL; } -gboolean otr_on_message_send(ProfChatWin *chatwin, const char * const message) +gboolean otr_on_message_send(ProfChatWin *chatwin, const char * const message, gboolean request_receipt) { return FALSE; } |