diff options
author | James Booth <boothj5@gmail.com> | 2014-04-27 02:04:05 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-04-27 02:04:05 +0100 |
commit | 183c373c66662f88137b2768ef67d7ee46958963 (patch) | |
tree | 8219fa14e58b04e439c6d3d9ca886bc10b53391b | |
parent | 2bc19f4669f820ff952a9d1b02055e93891d99b4 (diff) | |
download | profani-tty-183c373c66662f88137b2768ef67d7ee46958963.tar.gz |
Fixed error on SMP authentication fail
-rw-r--r-- | src/otr/otr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/otr/otr.c b/src/otr/otr.c index fe87eed8..cd3388d2 100644 --- a/src/otr/otr.c +++ b/src/otr/otr.c @@ -363,7 +363,7 @@ _otr_trust(const char * const recipient) } if (context->active_fingerprint) { - context->active_fingerprint->trust = "trusted"; + context->active_fingerprint->trust = strdup("trusted"); cb_write_fingerprints(NULL); } |