From: Michael Schuster Date: Sat, 7 Dec 2019 23:30:50 +0000 (+0100) Subject: Fix member variable name from last refactoring (Windows code) X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~504 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=336b64a56900f62db1f1290094b04ddfffb8f845;p=nextcloud-desktop.git Fix member variable name from last refactoring (Windows code) Signed-off-by: Michael Schuster --- diff --git a/src/gui/creds/webflowcredentials.cpp b/src/gui/creds/webflowcredentials.cpp index f6a9c1260..073a0c996 100644 --- a/src/gui/creds/webflowcredentials.cpp +++ b/src/gui/creds/webflowcredentials.cpp @@ -276,7 +276,7 @@ void WebFlowCredentials::writeSingleClientKeyChunkPEM(QKeychain::Job *incomingJo #if defined(Q_OS_WIN) // Windows workaround: Split the private key into chunks of 2048 bytes, // to allow 4k (4096 bit) keys to be saved (obey Windows's limits) - auto chunk = _clientSslKeyChunkBufferPEM.left(_clientSslCaKeyChunkSize); + auto chunk = _clientSslKeyChunkBufferPEM.left(_clientSslKeyChunkSize); _clientSslKeyChunkBufferPEM = _clientSslKeyChunkBufferPEM.right(_clientSslKeyChunkBufferPEM.size() - chunk.size()); #else