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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c9f1881c
Commit
c9f1881c
authored
Mar 13, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.r18.ru:/usr/home/ram/work/mysql-4.1.sp
parents
be079a5d
85243c10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
client/mysql.cc
client/mysql.cc
+3
-1
No files found.
client/mysql.cc
View file @
c9f1881c
...
@@ -2452,9 +2452,11 @@ char *get_arg(char *line, my_bool get_next_arg)
...
@@ -2452,9 +2452,11 @@ char *get_arg(char *line, my_bool get_next_arg)
ptr
++
;
ptr
++
;
if
(
*
ptr
==
'\\'
)
// short command was used
if
(
*
ptr
==
'\\'
)
// short command was used
ptr
+=
2
;
ptr
+=
2
;
while
(
!
my_isspace
(
system_charset_info
,
*
ptr
))
// skip command
while
(
*
ptr
&&
!
my_isspace
(
system_charset_info
,
*
ptr
))
// skip command
ptr
++
;
ptr
++
;
}
}
if
(
!*
ptr
)
return
NullS
;
while
(
my_isspace
(
system_charset_info
,
*
ptr
))
while
(
my_isspace
(
system_charset_info
,
*
ptr
))
ptr
++
;
ptr
++
;
if
(
*
ptr
==
'\''
||
*
ptr
==
'\"'
||
*
ptr
==
'`'
)
if
(
*
ptr
==
'\''
||
*
ptr
==
'\"'
||
*
ptr
==
'`'
)
...
...
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