diff options
| author | Rich Megginson <rmeggins@redhat.com> | 2005-08-26 19:41:40 +0000 |
|---|---|---|
| committer | Rich Megginson <rmeggins@redhat.com> | 2005-08-26 19:41:40 +0000 |
| commit | 432badcd7891b3dad6a0156a52980e882d4967e3 (patch) | |
| tree | a0a5f44559435f452c4e55c842927adde9d1ba0d /ldap/admin/src | |
| parent | 71465a8d14ba09ebe102a1a9bee1596473488f11 (diff) | |
| download | ds-432badcd7891b3dad6a0156a52980e882d4967e3.tar.gz ds-432badcd7891b3dad6a0156a52980e882d4967e3.tar.xz ds-432badcd7891b3dad6a0156a52980e882d4967e3.zip | |
Bug(s) fixed: 151678
Bug Description: new instance creation creates error aci (2 types in RDN)
Reviewed by: Nathan (Thanks!)
Fix Description: This only seems to occur when logging in to the console as a user other than the Console Admin user (e.g. as Directory Manager in my tests). We need the Console Admin DN or user id to construct the ACIs. This value is held in the suitespot3x_uid form parameter. I had removed it while working on this bug or a related bug earlier, but now that I've added it back, everything seems to be working again.
Platforms tested: RHEL4
Flag Day: no
Doc impact: no
QA impact: should be covered by regular nightly and manual testing
New Tests integrated into TET: none
Diffstat (limited to 'ldap/admin/src')
| -rw-r--r-- | ldap/admin/src/create_instance.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ldap/admin/src/create_instance.c b/ldap/admin/src/create_instance.c index 7e737f5c..aa08733f 100644 --- a/ldap/admin/src/create_instance.c +++ b/ldap/admin/src/create_instance.c @@ -4672,6 +4672,7 @@ int parse_form(server_config_s *cf) return 1; } + cf->suitespot3x_uid = ds_a_get_cgi_var("suitespot3x_uid", NULL, NULL); cf->cfg_sspt = ds_a_get_cgi_var("cfg_sspt", NULL, NULL); cf->cfg_sspt_uid = ds_a_get_cgi_var("cfg_sspt_uid", NULL, NULL); if (cf->cfg_sspt_uid && *(cf->cfg_sspt_uid) && |
