Procházet zdrojové kódy

Do not duplicate default string twice

tags/v1.9.90
Jan Grulich před 5 roky
rodič
revize
8105be9f31
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      common/rfb/CSecurityTLS.cxx

+ 2
- 2
common/rfb/CSecurityTLS.cxx Zobrazit soubor

@@ -95,9 +95,9 @@ void CSecurityTLS::setDefaults()
delete [] homeDir;

if (!fileexists(caDefault.buf))
X509CA.setDefaultStr(strdup(caDefault.buf));
X509CA.setDefaultStr(caDefault.buf);
if (!fileexists(crlDefault.buf))
X509CRL.setDefaultStr(strdup(crlDefault.buf));
X509CRL.setDefaultStr(crlDefault.buf);
}

void CSecurityTLS::shutdown(bool needbye)

Načítá se…
Zrušit
Uložit