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
ffacc77f
Commit
ffacc77f
authored
Aug 24, 2004
by
vva@eagle.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more accurate processing of find_type result
(Bug #4998 --protocol doesn't reject bad values)
parent
237615bc
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
10 deletions
+9
-10
client/mysql.cc
client/mysql.cc
+1
-1
client/mysqladmin.c
client/mysqladmin.c
+1
-1
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+1
-1
client/mysqlcheck.c
client/mysqlcheck.c
+1
-1
client/mysqldump.c
client/mysqldump.c
+1
-1
client/mysqlimport.c
client/mysqlimport.c
+1
-1
client/mysqlshow.c
client/mysqlshow.c
+1
-1
sql-common/client.c
sql-common/client.c
+2
-3
No files found.
client/mysql.cc
View file @
ffacc77f
...
@@ -753,7 +753,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
...
@@ -753,7 +753,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
opt_nopager
=
1
;
opt_nopager
=
1
;
case
OPT_MYSQL_PROTOCOL
:
case
OPT_MYSQL_PROTOCOL
:
{
{
if
(
!
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
)
if
(
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
<=
0
)
{
{
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
exit
(
1
);
exit
(
1
);
...
...
client/mysqladmin.c
View file @
ffacc77f
...
@@ -249,7 +249,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
...
@@ -249,7 +249,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
break
;
break
;
case
OPT_MYSQL_PROTOCOL
:
case
OPT_MYSQL_PROTOCOL
:
{
{
if
(
!
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
)
if
(
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
<=
0
)
{
{
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
exit
(
1
);
exit
(
1
);
...
...
client/mysqlbinlog.cc
View file @
ffacc77f
...
@@ -633,7 +633,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
...
@@ -633,7 +633,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
break
;
break
;
case
OPT_MYSQL_PROTOCOL
:
case
OPT_MYSQL_PROTOCOL
:
{
{
if
(
!
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
)
if
(
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
<=
0
)
{
{
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
exit
(
1
);
exit
(
1
);
...
...
client/mysqlcheck.c
View file @
ffacc77f
...
@@ -271,7 +271,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
...
@@ -271,7 +271,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
case
'V'
:
print_version
();
exit
(
0
);
case
'V'
:
print_version
();
exit
(
0
);
case
OPT_MYSQL_PROTOCOL
:
case
OPT_MYSQL_PROTOCOL
:
{
{
if
(
!
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
)
if
(
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
<=
0
)
{
{
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
exit
(
1
);
exit
(
1
);
...
...
client/mysqldump.c
View file @
ffacc77f
...
@@ -582,7 +582,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
...
@@ -582,7 +582,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
}
}
case
(
int
)
OPT_MYSQL_PROTOCOL
:
case
(
int
)
OPT_MYSQL_PROTOCOL
:
{
{
if
(
!
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
)
if
(
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
<=
0
)
{
{
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
exit
(
1
);
exit
(
1
);
...
...
client/mysqlimport.c
View file @
ffacc77f
...
@@ -203,7 +203,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
...
@@ -203,7 +203,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
#endif
#endif
case
OPT_MYSQL_PROTOCOL
:
case
OPT_MYSQL_PROTOCOL
:
{
{
if
(
!
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
)
if
(
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
<=
0
)
{
{
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
exit
(
1
);
exit
(
1
);
...
...
client/mysqlshow.c
View file @
ffacc77f
...
@@ -268,7 +268,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
...
@@ -268,7 +268,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
break
;
break
;
case
OPT_MYSQL_PROTOCOL
:
case
OPT_MYSQL_PROTOCOL
:
{
{
if
(
!
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
)
if
(
(
opt_protocol
=
find_type
(
argument
,
&
sql_protocol_typelib
,
0
))
<=
0
)
{
{
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
argument
);
exit
(
1
);
exit
(
1
);
...
...
sql-common/client.c
View file @
ffacc77f
...
@@ -1057,9 +1057,8 @@ void mysql_read_default_options(struct st_mysql_options *options,
...
@@ -1057,9 +1057,8 @@ void mysql_read_default_options(struct st_mysql_options *options,
options
->
max_allowed_packet
=
atoi
(
opt_arg
);
options
->
max_allowed_packet
=
atoi
(
opt_arg
);
break
;
break
;
case
28
:
/* protocol */
case
28
:
/* protocol */
if
((
options
->
protocol
=
find_type
(
opt_arg
,
if
((
options
->
protocol
=
find_type
(
opt_arg
,
&
sql_protocol_typelib
,
0
))
&
sql_protocol_typelib
,
0
))
<=
0
)
==
~
(
ulong
)
0
)
{
{
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
opt_arg
);
fprintf
(
stderr
,
"Unknown option to protocol: %s
\n
"
,
opt_arg
);
exit
(
1
);
exit
(
1
);
...
...
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