| 271 | } |
| 272 | |
| 273 | bool SvnInternalJobBase::contextSslClientCertPwPrompt( std::string& pw, const std::string& realm, |
| 274 | bool& maySave ) |
| 275 | { |
| 276 | Q_UNUSED(pw); |
| 277 | Q_UNUSED(maySave); |
| 278 | emit needSslClientCertPassword( QString::fromUtf8( realm.c_str() ) ); |
| 279 | m_guiSemaphore.acquire( 1 ); |
| 280 | return false; |
| 281 | } |
| 282 | |
| 283 | bool SvnInternalJobBase::success() const |
| 284 | { |
no test coverage detected