diff options
author | Michael Vetter <jubalh@iodoru.org> | 2022-04-27 16:17:48 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2022-04-27 16:30:01 +0200 |
commit | c8b88733efc8be47ceb3602286755e372acdfa9f (patch) | |
tree | 5101a2dca7cf31bda139d1b763a790eff6899bce /src/xmpp | |
parent | 866f688621313c6996a7a49d520aac12d142fa6c (diff) | |
download | profani-tty-c8b88733efc8be47ceb3602286755e372acdfa9f.tar.gz |
ox: print invalid fingerprint instead of aborting
Asserting here is not the right thing to do at all. A person could have a typo in the fingerprint. Or like in the case of the reported bug just confuse the arguments. An additional check for valid jid should be added later to the calling function maybe. Fix https://github.com/profanity-im/profanity/issues/1698
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/ox.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xmpp/ox.c b/src/xmpp/ox.c index f43fbd60..0fa5cece 100644 --- a/src/xmpp/ox.c +++ b/src/xmpp/ox.c @@ -340,7 +340,11 @@ _ox_request_public_key(const char* const jid, const char* const fingerprint) { assert(jid); assert(fingerprint); - assert(strlen(fingerprint) == KEYID_LENGTH); + + if (strlen(fingerprint) != KEYID_LENGTH) { + cons_show_error("Invalid fingerprint length for: %s", fingerprint); + } + cons_show("Requesting Public Key %s for %s", fingerprint, jid); log_info("[OX] Request %s's public key %s.", jid, fingerprint); // iq |