diff --git a/daemon/src/sip/sipaccount.cpp b/daemon/src/sip/sipaccount.cpp index 45e0fc06a905d5ca1a50fc84da6f043191bcb480..37bb738d4fc6c659a94888f92c9ab476ae71902e 100644 --- a/daemon/src/sip/sipaccount.cpp +++ b/daemon/src/sip/sipaccount.cpp @@ -881,8 +881,8 @@ void SIPAccount::trimCiphers() { int sum = 0; int count = 0; - // PJSIP aborts if our cipher list exceeds 1010 characters - static const int MAX_CIPHERS_STRLEN = 1010; + // PJSIP aborts if our cipher list exceeds 1000 characters + static const int MAX_CIPHERS_STRLEN = 1000; for (const auto &item : ciphers_) { sum += strlen(pj_ssl_cipher_name(item));