mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-29 12:19:03 +03:00
Use a different key than "user" to store the shib user
There is a HACK from commit fa0a2764a4
Which save the http user as a user for all credidentials, but that
cannot work with shibboleth
Fixes https://github.com/owncloud/enterprise/issues/175
This commit is contained in:
parent
3705a42375
commit
574e030caf
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@ namespace Mirall
|
|||
namespace
|
||||
{
|
||||
|
||||
const char userC[] = "user";
|
||||
// Not "user" because it has a special meaning for http
|
||||
const char userC[] = "shib_user";
|
||||
|
||||
int shibboleth_redirect_callback(CSYNC* csync_ctx,
|
||||
const char* uri)
|
||||
|
|
Loading…
Reference in a new issue