Skip to content

Commit da2f686

Browse files
author
Arun Kuruvila
committed
Merge branch 'mysql-5.5' into mysql-5.6
2 parents ace0074 + 86375f7 commit da2f686

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

sql/mysqld.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@ extern mysql_mutex_t
589589
LOCK_prepared_stmt_count, LOCK_error_messages, LOCK_connection_count,
590590
LOCK_sql_slave_skip_counter, LOCK_slave_net_timeout;
591591
#ifdef HAVE_OPENSSL
592+
extern char* des_key_file;
592593
extern mysql_mutex_t LOCK_des_key_file;
593594
#endif
594595
extern mysql_mutex_t LOCK_server_started;

sql/sql_reload.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
1+
/* Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
22
33
This program is free software; you can redistribute it and/or modify
44
it under the terms of the GNU General Public License as published by
@@ -28,6 +28,7 @@
2828
#include "rpl_rli.h" // rotate_relay_log
2929
#include "rpl_mi.h"
3030
#include "debug_sync.h"
31+
#include "des_key_file.h"
3132

3233

3334
/**
@@ -325,7 +326,7 @@ bool reload_acl_and_cache(THD *thd, unsigned long options,
325326
}
326327
}
327328
#endif
328-
#ifdef OPENSSL
329+
#ifdef HAVE_OPENSSL
329330
if (options & REFRESH_DES_KEY_FILE)
330331
{
331332
if (des_key_file && load_des_key_file(des_key_file))

0 commit comments

Comments
 (0)