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
e0edc9a6
Commit
e0edc9a6
authored
Apr 25, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#2596 MySQL Client Segmentation Fault on Solaris 9
- Print readline or libedit version
parent
06d29ea2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
client/mysql.cc
client/mysql.cc
+10
-2
No files found.
client/mysql.cc
View file @
e0edc9a6
...
@@ -691,8 +691,16 @@ static void usage(int version)
...
@@ -691,8 +691,16 @@ static void usage(int version)
#ifdef __NETWARE__
#ifdef __NETWARE__
#define printf consoleprintf
#define printf consoleprintf
#endif
#endif
printf
(
"%s Ver %s Distrib %s, for %s (%s)
\n
"
,
my_progname
,
VER
,
MYSQL_SERVER_VERSION
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
#if defined(USE_LIBEDIT_INTERFACE)
const
char
*
readline
=
""
;
#else
const
char
*
readline
=
"readline"
;
#endif
printf
(
"%s Ver %s Distrib %s, for %s (%s) using %s %s
\n
"
,
my_progname
,
VER
,
MYSQL_SERVER_VERSION
,
SYSTEM_TYPE
,
MACHINE_TYPE
,
readline
,
rl_library_version
);
if
(
version
)
if
(
version
)
return
;
return
;
printf
(
"\
printf
(
"\
...
...
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