Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
27733c8b
Commit
27733c8b
authored
6 years ago
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auth_gssapi - fix test result and let the test run on Windows buildbot
parent
13479cef
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
mysql-test/collections/buildbot_suites.bat
mysql-test/collections/buildbot_suites.bat
+1
-0
plugin/auth_gssapi/mysql-test/auth_gssapi/basic.result
plugin/auth_gssapi/mysql-test/auth_gssapi/basic.result
+8
-0
plugin/auth_gssapi/sspi_server.cc
plugin/auth_gssapi/sspi_server.cc
+1
-1
No files found.
mysql-test/collections/buildbot_suites.bat
View file @
27733c8b
...
...
@@ -4,4 +4,5 @@ innodb,^
plugins
,
^
mariabackup
,
^
roles
,
^
auth_gssapi
,
^
rocksdb
This diff is collapsed.
Click to expand it.
plugin/auth_gssapi/mysql-test/auth_gssapi/basic.result
View file @
27733c8b
INSTALL SONAME 'auth_gssapi';
Warnings:
Note 1105 SSPI: using principal name 'localhost', mech 'Negotiate'
CREATE USER 'GSSAPI_SHORTNAME' IDENTIFIED WITH gssapi;
connect con1,localhost,$GSSAPI_SHORTNAME,,;
SELECT USER(),CURRENT_USER();
USER() CURRENT_USER()
GSSAPI_SHORTNAME@localhost GSSAPI_SHORTNAME@%
disconnect con1;
connection default;
DROP USER 'GSSAPI_SHORTNAME';
CREATE USER nosuchuser IDENTIFIED WITH gssapi;
ERROR 28000: GSSAPI name mismatch, requested 'nosuchuser', actual name 'GSSAPI_SHORTNAME'
DROP USER nosuchuser;
CREATE USER usr1 IDENTIFIED WITH gssapi as 'GSSAPI_FULLNAME';
connect con1,localhost,usr1,,;
SELECT USER(),CURRENT_USER();
USER() CURRENT_USER()
usr1@localhost usr1@%
disconnect con1;
connection default;
DROP USER usr1;
CREATE USER nosuchuser IDENTIFIED WITH gssapi AS 'nosuchuser@EXAMPLE.COM';
ERROR 28000: GSSAPI name mismatch, requested 'nosuchuser@EXAMPLE.COM', actual name 'GSSAPI_FULLNAME'
...
...
This diff is collapsed.
Click to expand it.
plugin/auth_gssapi/sspi_server.cc
View file @
27733c8b
...
...
@@ -284,7 +284,7 @@ int plugin_init()
{
srv_principal_name
=
get_default_principal_name
();
}
my_printf_error
(
0
,
"SSPI: using principal name '%s', mech '%s'"
,
my_printf_error
(
ER_UNKNOWN_ERROR
,
"SSPI: using principal name '%s', mech '%s'"
,
ME_ERROR_LOG
|
ME_NOTE
,
srv_principal_name
,
srv_mech_name
);
ret
=
AcquireCredentialsHandle
(
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment