mirror of https://github.com/procxx/kepka.git
fixed autoupdate for mac os x version for dev-channel
This commit is contained in:
parent
d8395beadd
commit
69830d570f
|
@ -741,7 +741,7 @@ void PsUpdateDownloader::unpackUpdate() {
|
|||
return fatalFail();
|
||||
}
|
||||
|
||||
RSA *pbKey = PEM_read_bio_RSAPublicKey(BIO_new_mem_buf(const_cast<char*>(UpdatesPublicKey), -1), 0, 0, 0);
|
||||
RSA *pbKey = PEM_read_bio_RSAPublicKey(BIO_new_mem_buf(const_cast<char*>(DevChannel ? UpdatesPublicDevKey : UpdatesPublicKey), -1), 0, 0, 0);
|
||||
if (!pbKey) {
|
||||
LOG(("Update Error: cant read public rsa key!"));
|
||||
return fatalFail();
|
||||
|
|
Loading…
Reference in New Issue