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
e0f8b4fa
Commit
e0f8b4fa
authored
Mar 16, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-in-4.1
parents
9d8dee21
e1f771b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
3 deletions
+24
-3
client/mysqladmin.c
client/mysqladmin.c
+24
-3
No files found.
client/mysqladmin.c
View file @
e0f8b4fa
...
...
@@ -787,9 +787,30 @@ static int execute_commands(MYSQL *mysql,int argc, char **argv)
}
if
(
mysql_query
(
mysql
,
buff
))
{
my_printf_error
(
0
,
"unable to change password; error: '%s'"
,
MYF
(
ME_BELL
),
mysql_error
(
mysql
));
return
-
1
;
if
(
mysql_errno
(
mysql
)
!=
1290
)
{
my_printf_error
(
0
,
"unable to change password; error: '%s'"
,
MYF
(
ME_BELL
),
mysql_error
(
mysql
));
return
-
1
;
}
else
{
sprintf
(
buff
,
"UPDATE mysql.user SET password='%s' WHERE user='%s' and"
" host=substring_index(user(),_utf8
\"
@
\"
,-1)"
,
crypted_pw
,
user
);
if
(
mysql_query
(
mysql
,
buff
))
{
my_printf_error
(
0
,
"unable to update user table; error: '%s'"
,
MYF
(
ME_BELL
),
mysql_error
(
mysql
));
return
-
1
;
}
if
(
mysql_query
(
mysql
,
"set sql_log_off=0"
))
{
my_printf_error
(
0
,
"Can't turn on logging; error: '%s'"
,
MYF
(
ME_BELL
),
mysql_error
(
mysql
));
return
-
1
;
}
}
}
argc
--
;
argv
++
;
break
;
...
...
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