소스 검색

Do not duplicate default string twice

tags/v1.9.90
Jan Grulich 5 년 전
부모
커밋
8105be9f31
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      common/rfb/CSecurityTLS.cxx

+ 2
- 2
common/rfb/CSecurityTLS.cxx 파일 보기

@@ -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)

Loading…
취소
저장