mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 17:37:36 +03:00
logging in SSL callback, important to debug.
This commit is contained in:
parent
1fe6db6b2b
commit
40eda1c004
1 changed files with 3 additions and 1 deletions
|
@ -282,7 +282,9 @@ static int verify_sslcert(void *userdata, int failures,
|
||||||
(*_authcb) ( problem, buf, NE_ABUFSIZ-1, 1, 0, userdata );
|
(*_authcb) ( problem, buf, NE_ABUFSIZ-1, 1, 0, userdata );
|
||||||
if( strcmp( buf, "yes" ) == 0 ) {
|
if( strcmp( buf, "yes" ) == 0 ) {
|
||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
} else {
|
||||||
|
DEBUG_WEBDAV("Authentication callback replied %s", buf );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
DEBUG_WEBDAV("## VERIFY_SSL CERT: %d", ret );
|
DEBUG_WEBDAV("## VERIFY_SSL CERT: %d", ret );
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue