From 40eda1c004b9c6329729a6683d606eef173475dd Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Wed, 13 Jun 2012 11:26:37 +0200 Subject: [PATCH] logging in SSL callback, important to debug. --- modules/csync_owncloud.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/csync_owncloud.c b/modules/csync_owncloud.c index 4b7d9639b..27c977e02 100644 --- a/modules/csync_owncloud.c +++ b/modules/csync_owncloud.c @@ -282,7 +282,9 @@ static int verify_sslcert(void *userdata, int failures, (*_authcb) ( problem, buf, NE_ABUFSIZ-1, 1, 0, userdata ); if( strcmp( buf, "yes" ) == 0 ) { ret = 0; - } + } else { + DEBUG_WEBDAV("Authentication callback replied %s", buf ); + } } DEBUG_WEBDAV("## VERIFY_SSL CERT: %d", ret ); return ret;