Revert "Do not rely on the url scheme owncloud(s) any more."

This reverts commit 34dd3b207e.
It can be implemented simpler.
This commit is contained in:
Klaas Freitag 2014-03-18 16:57:01 +01:00
Родитель 34dd3b207e
Коммит 8e914deb99
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -486,8 +486,9 @@ static int dav_connect(const char *base_url) {
strcpy( protocol, "https");
useSSL = 1;
} else {
// Trust the original protocol
strcpy( protocol, scheme );
DEBUG_WEBDAV("Invalid scheme %s, go outa here!", scheme );
rc = -1;
goto out;
}
DEBUG_WEBDAV("* user %s", dav_session.user ? dav_session.user : "");