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
bb2bc56f
Commit
bb2bc56f
authored
Aug 14, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into zippy.cornsilk.net:/home/cmiller/work/mysql/m50-maint-b21224
parents
c0af010f
943543ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
client/mysql_upgrade.c
client/mysql_upgrade.c
+14
-2
No files found.
client/mysql_upgrade.c
View file @
bb2bc56f
...
...
@@ -149,17 +149,29 @@ static int create_defaults_file(const char *path, const char *our_defaults_path)
File
our_defaults_file
,
defaults_file
;
char
buffer
[
512
];
char
*
buffer_end
;
int
failed_to_open_count
=
0
;
int
error
;
/* check if the defaults file is needed at all */
if
(
!
opt_password
)
return
0
;
defaults_file
=
my_open
(
path
,
O_BINARY
|
O_CREAT
|
O_WRONLY
,
retry_open:
defaults_file
=
my_open
(
path
,
O_BINARY
|
O_CREAT
|
O_WRONLY
|
O_EXCL
,
MYF
(
MY_FAE
|
MY_WME
));
if
(
defaults_file
<
0
)
return
1
;
{
if
(
failed_to_open_count
==
0
)
{
remove
(
path
);
failed_to_open_count
+=
1
;
goto
retry_open
;
}
else
return
1
;
}
upgrade_defaults_created
=
1
;
if
(
our_defaults_path
)
{
...
...
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