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
89ca3c57
Commit
89ca3c57
authored
Jun 09, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql_test_run_new.c:
Corrected path to SSL certificate files
parent
59424989
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
mysql-test/mysql_test_run_new.c
mysql-test/mysql_test_run_new.c
+15
-15
No files found.
mysql-test/mysql_test_run_new.c
View file @
89ca3c57
...
...
@@ -1345,11 +1345,11 @@ void setup(char *file __attribute__((unused)))
#endif
/* HAVE_OPENSSL */
/* OpenSSL paths */
snprintf
(
ca_cert
,
FN_REFLEN
,
"%s/
SSL/cacert.pem"
,
base
_dir
);
snprintf
(
server_cert
,
FN_REFLEN
,
"%s/
SSL/server-cert.pem"
,
base
_dir
);
snprintf
(
server_key
,
FN_REFLEN
,
"%s/
SSL/server-key.pem"
,
base
_dir
);
snprintf
(
client_cert
,
FN_REFLEN
,
"%s/
SSL/client-cert.pem"
,
base
_dir
);
snprintf
(
client_key
,
FN_REFLEN
,
"%s/
SSL/client-key.pem"
,
base
_dir
);
snprintf
(
ca_cert
,
FN_REFLEN
,
"%s/
std_data/cacert.pem"
,
mysql_test
_dir
);
snprintf
(
server_cert
,
FN_REFLEN
,
"%s/
std_data/server-cert.pem"
,
mysql_test
_dir
);
snprintf
(
server_key
,
FN_REFLEN
,
"%s/
std_data/server-key.pem"
,
mysql_test
_dir
);
snprintf
(
client_cert
,
FN_REFLEN
,
"%s/
std_data/client-cert.pem"
,
mysql_test
_dir
);
snprintf
(
client_key
,
FN_REFLEN
,
"%s/
std_data/client-key.pem"
,
mysql_test
_dir
);
/* setup files */
snprintf
(
mysqld_file
,
FN_REFLEN
,
"%s/mysqld"
,
bin_dir
);
...
...
@@ -1378,11 +1378,11 @@ void setup(char *file __attribute__((unused)))
#endif
/* HAVE_OPENSSL */
/* OpenSSL paths */
snprintf
(
ca_cert
,
FN_REFLEN
,
"%s/
SSL/cacert.pem"
,
base
_dir
);
snprintf
(
server_cert
,
FN_REFLEN
,
"%s/
SSL/server-cert.pem"
,
base
_dir
);
snprintf
(
server_key
,
FN_REFLEN
,
"%s/
SSL/server-key.pem"
,
base
_dir
);
snprintf
(
client_cert
,
FN_REFLEN
,
"%s/
SSL/client-cert.pem"
,
base
_dir
);
snprintf
(
client_key
,
FN_REFLEN
,
"%s/
SSL/client-key.pem"
,
base
_dir
);
snprintf
(
ca_cert
,
FN_REFLEN
,
"%s/
std_data/cacert.pem"
,
mysql_test
_dir
);
snprintf
(
server_cert
,
FN_REFLEN
,
"%s/
std_data/server-cert.pem"
,
mysql_test
_dir
);
snprintf
(
server_key
,
FN_REFLEN
,
"%s/
std_data/server-key.pem"
,
mysql_test
_dir
);
snprintf
(
client_cert
,
FN_REFLEN
,
"%s/
std_data/client-cert.pem"
,
mysql_test
_dir
);
snprintf
(
client_key
,
FN_REFLEN
,
"%s/
std_data/client-key.pem"
,
mysql_test
_dir
);
/* setup files */
#ifdef _DEBUG
...
...
@@ -1411,11 +1411,11 @@ void setup(char *file __attribute__((unused)))
#endif
/* HAVE_OPENSSL */
/* OpenSSL paths */
snprintf
(
ca_cert
,
FN_REFLEN
,
"%s/
SSL/cacert.pem"
,
base
_dir
);
snprintf
(
server_cert
,
FN_REFLEN
,
"%s/
SSL/server-cert.pem"
,
base
_dir
);
snprintf
(
server_key
,
FN_REFLEN
,
"%s/
SSL/server-key.pem"
,
base
_dir
);
snprintf
(
client_cert
,
FN_REFLEN
,
"%s/
SSL/client-cert.pem"
,
base
_dir
);
snprintf
(
client_key
,
FN_REFLEN
,
"%s/
SSL/client-key.pem"
,
base
_dir
);
snprintf
(
ca_cert
,
FN_REFLEN
,
"%s/
std_data/cacert.pem"
,
mysql_test
_dir
);
snprintf
(
server_cert
,
FN_REFLEN
,
"%s/
std_data/server-cert.pem"
,
mysql_test
_dir
);
snprintf
(
server_key
,
FN_REFLEN
,
"%s/
std_data/server-key.pem"
,
mysql_test
_dir
);
snprintf
(
client_cert
,
FN_REFLEN
,
"%s/
std_data/client-cert.pem"
,
mysql_test
_dir
);
snprintf
(
client_key
,
FN_REFLEN
,
"%s/
std_data/client-key.pem"
,
mysql_test
_dir
);
/* setup files */
snprintf
(
mysqld_file
,
FN_REFLEN
,
"%s/sql/mysqld"
,
base_dir
);
...
...
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