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
e1d12383
Commit
e1d12383
authored
Jun 07, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed --use-symbolic-links
parent
ae9e69ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
sql/mysqld.cc
sql/mysqld.cc
+4
-11
No files found.
sql/mysqld.cc
View file @
e1d12383
...
...
@@ -2634,9 +2634,6 @@ static struct option long_options[] = {
{
"temp-pool"
,
no_argument
,
0
,
(
int
)
OPT_TEMP_POOL
},
{
"tmpdir"
,
required_argument
,
0
,
't'
},
{
"use-locking"
,
no_argument
,
0
,
(
int
)
OPT_USE_LOCKING
},
#ifdef USE_SYMDIR
{
"use-symbolic-links"
,
no_argument
,
0
,
's'
},
#endif
{
"user"
,
required_argument
,
0
,
'u'
},
{
"version"
,
no_argument
,
0
,
'V'
},
{
0
,
0
,
0
,
0
}
...
...
@@ -3087,9 +3084,6 @@ static void usage(void)
--remove Remove mysqld from the service list (NT)
\n
\
--standalone Dummy option to start as a standalone program (NT)\
"
);
#ifdef USE_SYMDIR
puts
(
"--use-symbolic-links Enable symbolic link support"
);
#endif
puts
(
""
);
#endif
#ifdef HAVE_BERKELEY_DB
...
...
@@ -3212,6 +3206,8 @@ static void get_options(int argc,char **argv)
int
c
,
option_index
=
0
;
myisam_delay_key_write
=
1
;
// Allow use of this
my_use_symdir
=
1
;
// Use internal symbolic links
while
((
c
=
getopt_long
(
argc
,
argv
,
"ab:C:h:#::T::?l::L:O:P:sS::t:u:noVvI?"
,
long_options
,
&
option_index
))
!=
EOF
)
{
...
...
@@ -3270,11 +3266,6 @@ static void get_options(int argc,char **argv)
case
'r'
:
mysqld_chroot
=
optarg
;
break
;
#ifdef USE_SYMDIR
case
's'
:
my_use_symdir
=
1
;
/* Use internal symbolic links */
break
;
#endif
case
't'
:
mysql_tmpdir
=
optarg
;
break
;
...
...
@@ -3456,6 +3447,7 @@ static void get_options(int argc,char **argv)
myisam_concurrent_insert
=
0
;
myisam_recover_options
=
HA_RECOVER_NONE
;
my_disable_symlinks
=
1
;
my_use_symdir
=
0
;
have_symlink
=
SHOW_OPTION_DISABLED
;
ha_open_options
&=
~
HA_OPEN_ABORT_IF_CRASHED
;
break
;
...
...
@@ -3515,6 +3507,7 @@ static void get_options(int argc,char **argv)
break
;
case
(
int
)
OPT_SKIP_SYMLINK
:
my_disable_symlinks
=
1
;
my_use_symdir
=
0
;
have_symlink
=
SHOW_OPTION_DISABLED
;
break
;
case
(
int
)
OPT_BIND_ADDRESS
:
...
...
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