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
5f78c492
Commit
5f78c492
authored
Jul 31, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge 192.168.0.20:mysql/bug21217/my50-bug21217
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
parents
2461e486
5a710e86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
client/mysqltest.c
client/mysqltest.c
+2
-2
No files found.
client/mysqltest.c
View file @
5f78c492
...
...
@@ -177,7 +177,7 @@ typedef struct
static
test_file
file_stack
[
MAX_INCLUDE_DEPTH
];
static
test_file
*
cur_file
;
static
test_file
*
file_stack_end
;
uint
start_lineno
;
/* Start line of query */
uint
start_lineno
=
0
;
/* Start line of query */
static
char
TMPDIR
[
FN_REFLEN
];
static
char
delimiter
[
MAX_DELIMITER
]
=
DEFAULT_DELIMITER
;
...
...
@@ -620,7 +620,7 @@ static void die(const char *fmt, ...)
if
(
cur_file
&&
cur_file
!=
file_stack
)
fprintf
(
stderr
,
"In included file
\"
%s
\"
: "
,
cur_file
->
file_name
);
if
(
start_lineno
!=
0
)
if
(
start_lineno
>
0
)
fprintf
(
stderr
,
"At line %u: "
,
start_lineno
);
vfprintf
(
stderr
,
fmt
,
args
);
fprintf
(
stderr
,
"
\n
"
);
...
...
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