Merge lp:~laurynas-biveinis/percona-server/merge-5.5.37 into lp:percona-server/5.5

Proposed by Laurynas Biveinis
Status: Merged
Approved by: Alexey Kopytov
Approved revision: no longer in the source branch.
Merged at revision: 647
Proposed branch: lp:~laurynas-biveinis/percona-server/merge-5.5.37
Merge into: lp:percona-server/5.5
Diff against target: 19732 lines (+4046/-907)
1415 files modified
BUILD/cleanup (+1/-1)
BUILD/compile-alpha (+1/-1)
BUILD/compile-amd64-debug-max-no-ndb (+1/-1)
BUILD/compile-amd64-gcov (+1/-1)
BUILD/compile-amd64-gprof (+1/-1)
BUILD/compile-amd64-max-sci (+1/-1)
BUILD/compile-pentium-cybozu (+1/-1)
BUILD/compile-pentium-gcov (+1/-1)
BUILD/compile-pentium-gprof (+1/-1)
BUILD/compile-pentium-icc (+2/-1)
BUILD/compile-pentium-icc-yassl (+2/-1)
BUILD/compile-pentium-myodbc (+2/-1)
BUILD/compile-pentium64 (+1/-0)
BUILD/compile-pentium64-gcov (+1/-0)
BUILD/compile-pentium64-gprof (+1/-0)
BUILD/compile-pentium64-max (+1/-0)
BUILD/compile-pentium64-max-sci (+2/-1)
BUILD/compile-ppc (+2/-1)
BUILD/compile-solaris-amd64 (+1/-0)
BUILD/compile-solaris-amd64-debug (+2/-1)
CMakeLists.txt (+8/-7)
Makefile-ps (+2/-2)
VERSION (+2/-2)
client/mysql.cc (+4/-4)
client/mysql_upgrade.c (+1/-0)
cmake/install_macros.cmake (+10/-10)
cmake/libutils.cmake (+2/-1)
cmake/mysql_version.cmake (+2/-1)
extra/yassl/README (+30/-1)
extra/yassl/certs/ca-cert.pem (+73/-42)
extra/yassl/certs/ca-key.pem (+25/-7)
extra/yassl/certs/client-cert.pem (+69/-37)
extra/yassl/certs/client-key.pem (+25/-7)
extra/yassl/certs/client-keyEnc.pem (+25/-7)
extra/yassl/certs/dsa-cert.pem (+20/-68)
extra/yassl/certs/server-cert.pem (+148/-30)
extra/yassl/certs/server-key.pem (+25/-7)
extra/yassl/certs/server-keyEnc.pem (+25/-7)
extra/yassl/include/cert_wrapper.hpp (+5/-2)
extra/yassl/include/crypto_wrapper.hpp (+1/-0)
extra/yassl/include/factory.hpp (+1/-0)
extra/yassl/include/handshake.hpp (+1/-0)
extra/yassl/include/log.hpp (+1/-0)
extra/yassl/include/openssl/crypto.h (+1/-0)
extra/yassl/include/openssl/des.h (+1/-0)
extra/yassl/include/openssl/des_old.h (+1/-0)
extra/yassl/include/openssl/engine.h (+1/-0)
extra/yassl/include/openssl/err.h (+1/-0)
extra/yassl/include/openssl/evp.h (+1/-0)
extra/yassl/include/openssl/generate_prefix_files.pl (+1/-0)
extra/yassl/include/openssl/hmac.h (+1/-0)
extra/yassl/include/openssl/lhash.h (+1/-0)
extra/yassl/include/openssl/md4.h (+1/-0)
extra/yassl/include/openssl/md5.h (+1/-0)
extra/yassl/include/openssl/objects.h (+1/-0)
extra/yassl/include/openssl/opensslv.h (+1/-0)
extra/yassl/include/openssl/pem.h (+1/-0)
extra/yassl/include/openssl/pkcs12.h (+1/-0)
extra/yassl/include/openssl/prefix_crypto.h (+1/-0)
extra/yassl/include/openssl/rand.h (+1/-0)
extra/yassl/include/openssl/rsa.h (+1/-0)
extra/yassl/include/openssl/sha.h (+1/-0)
extra/yassl/include/openssl/ssl.h (+2/-2)
extra/yassl/include/openssl/x509.h (+1/-0)
extra/yassl/include/openssl/x509v3.h (+1/-0)
extra/yassl/include/timer.hpp (+1/-0)
extra/yassl/include/yassl.hpp (+1/-0)
extra/yassl/src/cert_wrapper.cpp (+12/-2)
extra/yassl/src/crypto_wrapper.cpp (+2/-2)
extra/yassl/src/handshake.cpp (+3/-1)
extra/yassl/src/log.cpp (+1/-0)
extra/yassl/src/timer.cpp (+1/-0)
extra/yassl/src/yassl_imp.cpp (+28/-10)
extra/yassl/taocrypt/include/algebra.hpp (+1/-0)
extra/yassl/taocrypt/include/arc4.hpp (+1/-0)
extra/yassl/taocrypt/include/coding.hpp (+1/-0)
extra/yassl/taocrypt/include/dh.hpp (+1/-0)
extra/yassl/taocrypt/include/dsa.hpp (+1/-0)
extra/yassl/taocrypt/include/error.hpp (+1/-0)
extra/yassl/taocrypt/include/hmac.hpp (+1/-0)
extra/yassl/taocrypt/include/integer.hpp (+8/-0)
extra/yassl/taocrypt/include/md2.hpp (+1/-0)
extra/yassl/taocrypt/include/md4.hpp (+1/-0)
extra/yassl/taocrypt/include/md5.hpp (+1/-0)
extra/yassl/taocrypt/include/misc.hpp (+8/-1)
extra/yassl/taocrypt/include/modarith.hpp (+1/-0)
extra/yassl/taocrypt/include/random.hpp (+1/-0)
extra/yassl/taocrypt/include/ripemd.hpp (+1/-0)
extra/yassl/taocrypt/include/sha.hpp (+1/-0)
extra/yassl/taocrypt/include/twofish.hpp (+1/-0)
extra/yassl/taocrypt/include/type_traits.hpp (+1/-0)
extra/yassl/taocrypt/mySTL/algorithm.hpp (+1/-0)
extra/yassl/taocrypt/mySTL/helpers.hpp (+1/-0)
extra/yassl/taocrypt/mySTL/list.hpp (+1/-0)
extra/yassl/taocrypt/mySTL/memory.hpp (+1/-0)
extra/yassl/taocrypt/mySTL/memory_array.hpp (+1/-0)
extra/yassl/taocrypt/mySTL/pair.hpp (+1/-0)
extra/yassl/taocrypt/src/aes.cpp (+54/-28)
extra/yassl/taocrypt/src/arc4.cpp (+29/-20)
extra/yassl/taocrypt/src/bftables.cpp (+1/-0)
extra/yassl/taocrypt/src/blowfish.cpp (+25/-18)
extra/yassl/taocrypt/src/des.cpp (+28/-25)
extra/yassl/taocrypt/src/dh.cpp (+1/-0)
extra/yassl/taocrypt/src/file.cpp (+1/-0)
extra/yassl/taocrypt/src/integer.cpp (+4/-2)
extra/yassl/taocrypt/src/md2.cpp (+1/-0)
extra/yassl/taocrypt/src/md5.cpp (+29/-21)
extra/yassl/taocrypt/src/rabbit.cpp (+10/-5)
extra/yassl/taocrypt/src/ripemd.cpp (+28/-19)
extra/yassl/taocrypt/src/sha.cpp (+31/-20)
extra/yassl/taocrypt/src/tftables.cpp (+1/-0)
extra/yassl/taocrypt/src/twofish.cpp (+29/-20)
extra/yassl/taocrypt/test/test.cpp (+7/-7)
include/m_ctype.h (+2/-2)
include/mysql_version.h.in (+4/-3)
include/t_ctype.h (+1/-0)
libmysql/CMakeLists.txt (+31/-7)
libmysqld/CMakeLists.txt (+35/-1)
libmysqld/examples/test-run (+1/-0)
man/comp_err.1 (+4/-4)
man/innochecksum.1 (+2/-2)
man/msql2mysql.1 (+2/-2)
man/my_print_defaults.1 (+4/-4)
man/myisam_ftdump.1 (+2/-2)
man/myisamchk.1 (+4/-4)
man/myisamlog.1 (+2/-2)
man/myisampack.1 (+4/-4)
man/mysql-stress-test.pl.1 (+2/-2)
man/mysql-test-run.pl.1 (+2/-2)
man/mysql.1 (+6/-6)
man/mysql.server.1 (+3/-3)
man/mysql_client_test.1 (+2/-2)
man/mysql_config.1 (+2/-2)
man/mysql_convert_table_format.1 (+3/-3)
man/mysql_find_rows.1 (+2/-2)
man/mysql_fix_extensions.1 (+2/-2)
man/mysql_install_db.1 (+2/-2)
man/mysql_plugin.1 (+2/-2)
man/mysql_secure_installation.1 (+3/-3)
man/mysql_setpermission.1 (+3/-3)
man/mysql_tzinfo_to_sql.1 (+2/-2)
man/mysql_upgrade.1 (+24/-4)
man/mysql_waitpid.1 (+2/-2)
man/mysql_zap.1 (+2/-2)
man/mysqlaccess.1 (+2/-2)
man/mysqladmin.1 (+6/-6)
man/mysqlbinlog.1 (+4/-4)
man/mysqlbug.1 (+2/-2)
man/mysqlcheck.1 (+6/-6)
man/mysqld.8 (+2/-2)
man/mysqld_multi.1 (+3/-3)
man/mysqld_safe.1 (+2/-2)
man/mysqldump.1 (+5/-5)
man/mysqldumpslow.1 (+2/-2)
man/mysqlhotcopy.1 (+2/-2)
man/mysqlimport.1 (+5/-5)
man/mysqlshow.1 (+5/-5)
man/mysqlslap.1 (+6/-6)
man/mysqltest.1 (+2/-2)
man/ndb-common-options.1 (+2/-2)
man/ndb_blob_tool.1 (+2/-2)
man/ndb_config.1 (+4/-3)
man/ndb_cpcd.1 (+2/-2)
man/ndb_delete_all.1 (+2/-2)
man/ndb_desc.1 (+2/-2)
man/ndb_drop_index.1 (+3/-3)
man/ndb_drop_table.1 (+2/-2)
man/ndb_error_reporter.1 (+2/-2)
man/ndb_index_stat.1 (+2/-2)
man/ndb_mgm.1 (+2/-2)
man/ndb_mgmd.8 (+2/-2)
man/ndb_print_backup_file.1 (+2/-2)
man/ndb_print_schema_file.1 (+2/-2)
man/ndb_print_sys_file.1 (+2/-2)
man/ndb_restore.1 (+2/-2)
man/ndb_select_all.1 (+2/-2)
man/ndb_select_count.1 (+2/-2)
man/ndb_show_tables.1 (+2/-2)
man/ndb_size.pl.1 (+2/-2)
man/ndb_waiter.1 (+2/-2)
man/ndbd.8 (+2/-2)
man/ndbd_redo_log_reader.1 (+3/-3)
man/ndbinfo_select_all.1 (+2/-2)
man/ndbmtd.8 (+2/-2)
man/perror.1 (+2/-2)
man/replace.1 (+2/-2)
man/resolve_stack_dump.1 (+2/-2)
man/resolveip.1 (+2/-2)
mysql-test/include/default_my.cnf (+1/-0)
mysql-test/include/have_perfschema.inc (+1/-0)
mysql-test/lib/mtr_match.pm (+1/-0)
mysql-test/mysql-test-run.pl (+12/-11)
mysql-test/purify.supp (+1/-0)
mysql-test/r/parser.result (+25/-0)
mysql-test/suite/innodb/r/blob-update-debug.result (+15/-0)
mysql-test/suite/innodb/r/create-index.result (+9/-0)
mysql-test/suite/innodb/r/innodb-autoinc.result (+27/-0)
mysql-test/suite/innodb/r/innodb-update-insert.result (+43/-0)
mysql-test/suite/innodb/t/blob-update-debug.test (+17/-0)
mysql-test/suite/innodb/t/create-index.test (+11/-0)
mysql-test/suite/innodb/t/innodb-autoinc.test (+14/-0)
mysql-test/suite/innodb/t/innodb-update-insert.test (+38/-0)
mysql-test/suite/perfschema_stress/README (+1/-0)
mysql-test/suite/sys_vars/r/general_log_file_basic.result (+1/-0)
mysql-test/suite/sys_vars/r/innodb_thread_sleep_delay_basic.result (+30/-0)
mysql-test/suite/sys_vars/r/slow_query_log_file_basic.result (+1/-0)
mysql-test/suite/sys_vars/t/general_log_file_basic.test (+1/-1)
mysql-test/suite/sys_vars/t/innodb_thread_sleep_delay_basic.test (+18/-0)
mysql-test/suite/sys_vars/t/slow_query_log_file_basic.test (+1/-1)
mysql-test/t/parser.test (+25/-0)
mysys/mf_arr_appstr.c (+1/-0)
mysys/mf_qsort2.c (+1/-0)
mysys/my_alarm.c (+1/-0)
mysys/my_libwrap.c (+1/-0)
mysys/sha1.c (+1/-0)
packaging/rpm-oel/CMakeLists.txt (+2/-2)
packaging/rpm-oel/mysql-5.5-libmysqlclient-symbols.patch (+982/-0)
packaging/rpm-oel/mysql-embedded-check.c (+0/-26)
packaging/rpm-oel/mysql.spec.in (+159/-124)
plugin/semisync/semisync.cc (+1/-0)
plugin/semisync/semisync.h (+1/-0)
plugin/semisync/semisync_slave_plugin.cc (+1/-0)
scripts/CMakeLists.txt (+9/-1)
scripts/comp_sql.c (+1/-0)
scripts/msql2mysql.sh (+1/-0)
scripts/mysql_config.pl.in (+2/-2)
scripts/mysql_config.sh (+4/-4)
scripts/mysql_install_db.pl.in (+3/-3)
scripts/mysql_test_data_timezone.sql (+1/-0)
scripts/mysqlbug.sh (+1/-0)
sql/filesort.cc (+7/-2)
sql/log_event.cc (+81/-8)
sql/log_event.h (+15/-1)
sql/mysqld.cc (+3/-2)
sql/mysqld.h (+1/-10)
sql/share/charsets/Index.xml (+1/-0)
sql/share/charsets/ascii.xml (+1/-0)
sql/share/charsets/cp1250.xml (+1/-0)
sql/share/charsets/cp1256.xml (+1/-0)
sql/share/charsets/cp1257.xml (+1/-0)
sql/share/charsets/cp850.xml (+1/-0)
sql/share/charsets/cp866.xml (+1/-0)
sql/share/charsets/dec8.xml (+1/-0)
sql/share/charsets/geostd8.xml (+1/-0)
sql/share/charsets/greek.xml (+1/-0)
sql/share/charsets/hebrew.xml (+1/-0)
sql/share/charsets/hp8.xml (+1/-0)
sql/share/charsets/keybcs2.xml (+1/-0)
sql/share/charsets/koi8r.xml (+1/-0)
sql/share/charsets/koi8u.xml (+1/-0)
sql/share/charsets/languages.html (+1/-0)
sql/share/charsets/latin1.xml (+1/-0)
sql/share/charsets/latin2.xml (+1/-0)
sql/share/charsets/latin5.xml (+1/-0)
sql/share/charsets/latin7.xml (+1/-0)
sql/share/charsets/macce.xml (+1/-0)
sql/share/charsets/macroman.xml (+1/-0)
sql/share/charsets/swe7.xml (+1/-0)
sql/sql_class.h (+3/-1)
sql/sql_parse.cc (+3/-5)
sql/sql_state.c (+1/-0)
sql/sql_trigger.cc (+7/-0)
sql/sql_yacc.yy (+8/-1)
storage/archive/archive_test.c (+1/-0)
storage/innobase/buf/buf0buf.c (+3/-1)
storage/innobase/handler/ha_innodb.cc (+19/-3)
storage/innobase/handler/ha_innodb.h (+1/-0)
storage/innobase/handler/handler0alter.cc (+2/-2)
storage/innobase/row/row0ins.c (+5/-1)
storage/innobase/row/row0upd.c (+9/-34)
storage/innobase/srv/srv0start.c (+5/-1)
storage/myisam/ftbench/Ecompare.pl (+1/-0)
storage/myisam/ftbench/Ecreate.pl (+1/-0)
storage/myisam/ftbench/Ereport.pl (+1/-0)
storage/myisam/mi_test_all.sh (+1/-0)
storage/myisammrg/myrg_records.c (+1/-0)
storage/ndb/Makefile.am (+1/-0)
storage/ndb/config/common.mk.am (+1/-0)
storage/ndb/config/make-win-dsw.sh (+1/-0)
storage/ndb/config/type_kernel.mk.am (+1/-0)
storage/ndb/config/type_mgmapiclient.mk.am (+1/-0)
storage/ndb/config/type_ndbapi.mk.am (+1/-0)
storage/ndb/config/type_ndbapiclient.mk.am (+1/-0)
storage/ndb/config/type_ndbapitest.mk.am (+1/-0)
storage/ndb/config/type_ndbapitools.mk.am (+1/-0)
storage/ndb/config/type_util.mk.am (+1/-0)
storage/ndb/config/win-includes (+1/-0)
storage/ndb/config/win-libraries (+1/-0)
storage/ndb/config/win-name (+1/-0)
storage/ndb/config/win-sources (+1/-0)
storage/ndb/docs/Makefile.am (+1/-0)
storage/ndb/docs/doxygen/Doxyfile.mgmapi (+1/-0)
storage/ndb/docs/doxygen/Doxyfile.ndb (+1/-0)
storage/ndb/docs/doxygen/Doxyfile.ndbapi (+1/-0)
storage/ndb/docs/doxygen/Doxyfile.odbc (+1/-0)
storage/ndb/docs/doxygen/postdoxy.pl (+1/-0)
storage/ndb/docs/doxygen/predoxy.pl (+1/-0)
storage/ndb/include/Makefile.am (+1/-0)
storage/ndb/include/debugger/DebuggerNames.hpp (+1/-0)
storage/ndb/include/debugger/EventLogger.hpp (+1/-0)
storage/ndb/include/debugger/GrepError.hpp (+1/-0)
storage/ndb/include/debugger/SignalLoggerManager.hpp (+1/-0)
storage/ndb/include/editline/editline.h (+1/-0)
storage/ndb/include/kernel/AttributeDescriptor.hpp (+1/-0)
storage/ndb/include/kernel/AttributeHeader.hpp (+1/-0)
storage/ndb/include/kernel/AttributeList.hpp (+1/-0)
storage/ndb/include/kernel/BlockNumbers.h (+1/-0)
storage/ndb/include/kernel/GlobalSignalNumbers.h (+1/-0)
storage/ndb/include/kernel/GrepEvent.hpp (+1/-0)
storage/ndb/include/kernel/Interpreter.hpp (+1/-0)
storage/ndb/include/kernel/LogLevel.hpp (+1/-0)
storage/ndb/include/kernel/NodeBitmask.hpp (+1/-0)
storage/ndb/include/kernel/NodeInfo.hpp (+1/-0)
storage/ndb/include/kernel/NodeState.hpp (+1/-0)
storage/ndb/include/kernel/RefConvert.hpp (+1/-0)
storage/ndb/include/kernel/kernel_config_parameters.h (+1/-0)
storage/ndb/include/kernel/kernel_types.h (+1/-0)
storage/ndb/include/kernel/ndb_limits.h (+1/-0)
storage/ndb/include/kernel/signaldata/AbortAll.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/AccFrag.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/AccScan.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/AccSizeAltReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/AllocNodeId.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/AlterIndx.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/AlterTable.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/AlterTrig.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ApiBroadcast.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ApiRegSignalData.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ApiVersion.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ArbitSignalData.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/AttrInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/BackupImpl.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/BackupSignalData.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/BlockCommitOrd.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/BuildIndx.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CheckNodeGroups.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CloseComReqConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CmInit.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CmvmiCfgConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CntrMasterConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CntrMasterReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CntrStart.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ConfigParamId.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ContinueFragmented.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CopyActive.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CopyFrag.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CopyGCIReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateEvnt.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateFilegroup.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateFilegroupImpl.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateFrag.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateFragmentation.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateIndx.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateTab.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateTable.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/CreateTrig.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DiAddTab.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DiGetNodes.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DictLock.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DictObjOp.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DictSchemaInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DictSizeAltReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DictStart.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DictTabInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DihAddFrag.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DihContinueB.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DihFragCount.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DihSizeAltReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DihStartTab.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DihSwitchReplica.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DisconnectRep.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DropFilegroup.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DropFilegroupImpl.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DropIndx.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DropObj.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DropTab.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DropTabFile.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DropTable.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DropTrig.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/DumpStateOrd.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/EmptyLcp.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/EndTo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/EventReport.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/EventSubscribeReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ExecFragReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/Extent.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/FailRep.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/FireTrigOrd.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/FsAppendReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/FsCloseReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/FsConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/FsReadWriteReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/FsRef.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/FsRemoveReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/GCPSave.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/GetTabInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/GetTableId.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/GrepImpl.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/HotSpareRep.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/IndxAttrInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/IndxKeyInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/InvalidateNodeLCPConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/InvalidateNodeLCPReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/KeyInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/LCP.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/LgmanContinueB.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ListTables.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/LqhFrag.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/LqhKey.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/LqhSizeAltReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/LqhTransConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ManagementServer.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/MasterGCP.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/MasterLCP.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/NFCompleteRep.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/NdbSttor.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/NdbfsContinueB.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/NextScan.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/NodeFailRep.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/NodeStateSignalData.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/PackedSignal.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/PgmanContinueB.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/PrepDropTab.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/PrepFailReqRef.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ReadConfig.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ReadNodesConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/RelTabMem.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/RepImpl.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/RestoreContinueB.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/RestoreImpl.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ResumeReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/RouteOrd.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ScanFrag.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/ScanTab.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/SetLogLevelOrd.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/SetVarReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/SignalData.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/SignalDataPrint.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/SignalDroppedRep.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/SrFragidConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StartFragReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StartInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StartMe.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StartOrd.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StartPerm.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StartRec.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StartTo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StopMe.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StopPerm.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/StopReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/SumaImpl.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/SystemError.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TamperOrd.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcCommit.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcContinueB.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcHbRep.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcIndx.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcKeyConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcKeyFailConf.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcKeyRef.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcKeyReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcRollbackRep.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TcSizeAltReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TestOrd.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TransIdAI.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TrigAttrInfo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TsmanContinueB.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TupCommit.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TupFrag.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TupKey.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TupSizeAltReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TuxBound.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TuxContinueB.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TuxMaint.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/TuxSizeAltReq.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/UpdateTo.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/UpgradeStartup.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/UtilDelete.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/UtilExecute.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/UtilLock.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/UtilPrepare.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/UtilRelease.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/UtilSequence.hpp (+1/-0)
storage/ndb/include/kernel/signaldata/WaitGCP.hpp (+1/-0)
storage/ndb/include/kernel/trigger_definitions.h (+1/-0)
storage/ndb/include/logger/ConsoleLogHandler.hpp (+1/-0)
storage/ndb/include/logger/FileLogHandler.hpp (+1/-0)
storage/ndb/include/logger/LogHandler.hpp (+1/-0)
storage/ndb/include/logger/Logger.hpp (+1/-0)
storage/ndb/include/logger/SysLogHandler.hpp (+1/-0)
storage/ndb/include/mgmapi/mgmapi.h (+1/-0)
storage/ndb/include/mgmapi/mgmapi_config_parameters.h (+1/-0)
storage/ndb/include/mgmapi/mgmapi_config_parameters_debug.h (+1/-0)
storage/ndb/include/mgmapi/mgmapi_debug.h (+1/-0)
storage/ndb/include/mgmapi/mgmapi_error.h (+1/-0)
storage/ndb/include/mgmapi/ndb_logevent.h (+1/-0)
storage/ndb/include/mgmapi/ndbd_exit_codes.h (+1/-0)
storage/ndb/include/mgmcommon/ConfigRetriever.hpp (+1/-0)
storage/ndb/include/mgmcommon/IPCConfig.hpp (+1/-0)
storage/ndb/include/mgmcommon/MgmtErrorReporter.hpp (+1/-0)
storage/ndb/include/ndb_constants.h (+1/-0)
storage/ndb/include/ndb_global.h.in (+1/-0)
storage/ndb/include/ndb_init.h (+1/-0)
storage/ndb/include/ndb_net.h (+1/-0)
storage/ndb/include/ndb_types.h.in (+1/-0)
storage/ndb/include/ndb_version.h.in (+1/-0)
storage/ndb/include/ndbapi/Ndb.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbApi.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbBlob.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbDictionary.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbError.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbEventOperation.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbIndexOperation.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbIndexScanOperation.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbIndexStat.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbOperation.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbPool.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbRecAttr.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbReceiver.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbScanFilter.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbScanOperation.hpp (+1/-0)
storage/ndb/include/ndbapi/NdbTransaction.hpp (+1/-0)
storage/ndb/include/ndbapi/ndb_cluster_connection.hpp (+1/-0)
storage/ndb/include/ndbapi/ndb_opt_defaults.h (+1/-0)
storage/ndb/include/ndbapi/ndbapi_limits.h (+1/-0)
storage/ndb/include/ndbapi/ndberror.h (+1/-0)
storage/ndb/include/newtonapi/dba.h (+1/-0)
storage/ndb/include/newtonapi/defs/pcn_types.h (+1/-0)
storage/ndb/include/portlib/NdbCondition.h (+1/-0)
storage/ndb/include/portlib/NdbConfig.h (+1/-0)
storage/ndb/include/portlib/NdbDaemon.h (+1/-0)
storage/ndb/include/portlib/NdbEnv.h (+1/-0)
storage/ndb/include/portlib/NdbHost.h (+1/-0)
storage/ndb/include/portlib/NdbMain.h (+1/-0)
storage/ndb/include/portlib/NdbMem.h (+1/-0)
storage/ndb/include/portlib/NdbMutex.h (+1/-0)
storage/ndb/include/portlib/NdbSleep.h (+1/-0)
storage/ndb/include/portlib/NdbTCP.h (+1/-0)
storage/ndb/include/portlib/NdbThread.h (+1/-0)
storage/ndb/include/portlib/NdbTick.h (+1/-0)
storage/ndb/include/portlib/PortDefs.h (+1/-0)
storage/ndb/include/portlib/prefetch.h (+1/-0)
storage/ndb/include/transporter/TransporterCallback.hpp (+1/-0)
storage/ndb/include/transporter/TransporterDefinitions.hpp (+1/-0)
storage/ndb/include/transporter/TransporterRegistry.hpp (+1/-0)
storage/ndb/include/util/BaseString.hpp (+1/-0)
storage/ndb/include/util/Bitmask.hpp (+1/-0)
storage/ndb/include/util/ConfigValues.hpp (+1/-0)
storage/ndb/include/util/File.hpp (+1/-0)
storage/ndb/include/util/InputStream.hpp (+1/-0)
storage/ndb/include/util/NdbOut.hpp (+1/-0)
storage/ndb/include/util/NdbSqlUtil.hpp (+1/-0)
storage/ndb/include/util/OutputStream.hpp (+1/-0)
storage/ndb/include/util/Parser.hpp (+1/-0)
storage/ndb/include/util/Properties.hpp (+1/-0)
storage/ndb/include/util/SimpleProperties.hpp (+1/-0)
storage/ndb/include/util/SocketAuthenticator.hpp (+1/-0)
storage/ndb/include/util/SocketClient.hpp (+1/-0)
storage/ndb/include/util/SocketServer.hpp (+1/-0)
storage/ndb/include/util/UtilBuffer.hpp (+1/-0)
storage/ndb/include/util/Vector.hpp (+1/-0)
storage/ndb/include/util/basestring_vsnprintf.h (+1/-0)
storage/ndb/include/util/md5_hash.hpp (+1/-0)
storage/ndb/include/util/ndb_rand.h (+1/-0)
storage/ndb/include/util/random.h (+1/-0)
storage/ndb/include/util/socket_io.h (+1/-0)
storage/ndb/include/util/uucode.h (+1/-0)
storage/ndb/include/util/version.h (+1/-0)
storage/ndb/ndbapi-examples/mgmapi_logevent/main.cpp (+1/-0)
storage/ndb/ndbapi-examples/mgmapi_logevent2/main.cpp (+1/-0)
storage/ndb/ndbapi-examples/ndbapi_async/ndbapi_async.cpp (+1/-0)
storage/ndb/ndbapi-examples/ndbapi_async1/ndbapi_async1.cpp (+1/-0)
storage/ndb/ndbapi-examples/ndbapi_event/ndbapi_event.cpp (+1/-0)
storage/ndb/ndbapi-examples/ndbapi_retries/ndbapi_retries.cpp (+1/-0)
storage/ndb/ndbapi-examples/ndbapi_scan/ndbapi_scan.cpp (+1/-0)
storage/ndb/ndbapi-examples/ndbapi_simple/ndbapi_simple.cpp (+1/-0)
storage/ndb/ndbapi-examples/ndbapi_simple_dual/main.cpp (+1/-0)
storage/ndb/ndbapi-examples/ndbapi_simple_index/main.cpp (+1/-0)
storage/ndb/src/Makefile.am (+1/-0)
storage/ndb/src/common/Makefile.am (+1/-0)
storage/ndb/src/common/debugger/BlockNames.cpp (+1/-0)
storage/ndb/src/common/debugger/DebuggerNames.cpp (+1/-0)
storage/ndb/src/common/debugger/EventLogger.cpp (+1/-0)
storage/ndb/src/common/debugger/GrepError.cpp (+1/-0)
storage/ndb/src/common/debugger/Makefile.am (+1/-0)
storage/ndb/src/common/debugger/SignalLoggerManager.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/AccLock.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/AlterIndx.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/AlterTab.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/AlterTable.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/AlterTrig.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/BackupImpl.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/BackupSignalData.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/CloseComReqConf.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/CntrStart.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/ContinueB.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/CopyGCI.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/CreateEvnt.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/CreateFragmentation.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/CreateIndx.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/CreateTrig.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/DihContinueB.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/DihSwitchReplicaReq.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/DisconnectRep.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/DropIndx.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/DropTab.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/DropTrig.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/FailRep.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/FireTrigOrd.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/FsAppendReq.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/FsCloseReq.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/FsConf.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/FsOpenReq.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/FsReadWriteReq.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/FsRef.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/GCPSave.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/IndxAttrInfo.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/IndxKeyInfo.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/LCP.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/LqhFrag.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/LqhKey.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/LqhTrans.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/Makefile.am (+1/-0)
storage/ndb/src/common/debugger/signaldata/MasterLCP.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/NFCompleteRep.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/NdbSttor.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/NdbfsContinueB.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/PackedSignal.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/PrepDropTab.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/PrepFailReqRef.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/ReadNodesConf.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/ScanFrag.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/ScanTab.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/SignalDataPrint.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/SignalDroppedRep.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/SignalNames.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/StartRec.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/SumaImpl.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/SystemError.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TcIndx.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TcKeyConf.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TcKeyRef.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TcKeyReq.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TcRollbackRep.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TrigAttrInfo.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TupCommit.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TupKey.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/TuxMaint.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/UtilDelete.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/UtilExecute.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/UtilLock.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/UtilPrepare.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/UtilSequence.cpp (+1/-0)
storage/ndb/src/common/debugger/signaldata/print.awk (+1/-0)
storage/ndb/src/common/logger/ConsoleLogHandler.cpp (+1/-0)
storage/ndb/src/common/logger/FileLogHandler.cpp (+1/-0)
storage/ndb/src/common/logger/LogHandler.cpp (+1/-0)
storage/ndb/src/common/logger/LogHandlerList.cpp (+1/-0)
storage/ndb/src/common/logger/LogHandlerList.hpp (+1/-0)
storage/ndb/src/common/logger/Logger.cpp (+1/-0)
storage/ndb/src/common/logger/Makefile.am (+1/-0)
storage/ndb/src/common/logger/SysLogHandler.cpp (+1/-0)
storage/ndb/src/common/logger/listtest/LogHandlerListUnitTest.cpp (+1/-0)
storage/ndb/src/common/logger/listtest/LogHandlerListUnitTest.hpp (+1/-0)
storage/ndb/src/common/logger/loggertest/LoggerUnitTest.cpp (+1/-0)
storage/ndb/src/common/logger/loggertest/LoggerUnitTest.hpp (+1/-0)
storage/ndb/src/common/mgmcommon/ConfigRetriever.cpp (+1/-0)
storage/ndb/src/common/mgmcommon/IPCConfig.cpp (+1/-0)
storage/ndb/src/common/mgmcommon/Makefile.am (+1/-0)
storage/ndb/src/common/mgmcommon/printConfig/printConfig.cpp (+1/-0)
storage/ndb/src/common/portlib/Makefile.am (+1/-0)
storage/ndb/src/common/portlib/NdbCondition.c (+1/-0)
storage/ndb/src/common/portlib/NdbConfig.c (+1/-0)
storage/ndb/src/common/portlib/NdbDaemon.c (+1/-0)
storage/ndb/src/common/portlib/NdbEnv.c (+1/-0)
storage/ndb/src/common/portlib/NdbHost.c (+1/-0)
storage/ndb/src/common/portlib/NdbMem.c (+1/-0)
storage/ndb/src/common/portlib/NdbPortLibTest.cpp (+1/-0)
storage/ndb/src/common/portlib/NdbSleep.c (+1/-0)
storage/ndb/src/common/portlib/NdbTCP.cpp (+1/-0)
storage/ndb/src/common/portlib/NdbThread.c (+1/-0)
storage/ndb/src/common/portlib/NdbTick.c (+1/-0)
storage/ndb/src/common/portlib/memtest.c (+1/-0)
storage/ndb/src/common/portlib/mmstest.cpp (+1/-0)
storage/ndb/src/common/portlib/munmaptest.cpp (+1/-0)
storage/ndb/src/common/portlib/win32/NdbCondition.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbDaemon.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbEnv.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbHost.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbMem.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbMutex.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbSleep.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbTCP.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbThread.c (+1/-0)
storage/ndb/src/common/portlib/win32/NdbTick.c (+1/-0)
storage/ndb/src/common/transporter/Makefile.am (+1/-0)
storage/ndb/src/common/transporter/Packer.cpp (+1/-0)
storage/ndb/src/common/transporter/Packer.hpp (+1/-0)
storage/ndb/src/common/transporter/SCI_Transporter.cpp (+1/-0)
storage/ndb/src/common/transporter/SCI_Transporter.hpp (+1/-0)
storage/ndb/src/common/transporter/SHM_Buffer.hpp (+1/-0)
storage/ndb/src/common/transporter/SHM_Transporter.cpp (+1/-0)
storage/ndb/src/common/transporter/SHM_Transporter.hpp (+1/-0)
storage/ndb/src/common/transporter/SHM_Transporter.unix.cpp (+1/-0)
storage/ndb/src/common/transporter/SHM_Transporter.win32.cpp (+1/-0)
storage/ndb/src/common/transporter/SendBuffer.cpp (+1/-0)
storage/ndb/src/common/transporter/SendBuffer.hpp (+1/-0)
storage/ndb/src/common/transporter/TCP_Transporter.cpp (+1/-0)
storage/ndb/src/common/transporter/TCP_Transporter.hpp (+1/-0)
storage/ndb/src/common/transporter/Transporter.cpp (+1/-0)
storage/ndb/src/common/transporter/Transporter.hpp (+1/-0)
storage/ndb/src/common/transporter/TransporterInternalDefinitions.hpp (+1/-0)
storage/ndb/src/common/transporter/TransporterRegistry.cpp (+1/-0)
storage/ndb/src/common/transporter/basictest/basicTransporterTest.cpp (+1/-0)
storage/ndb/src/common/transporter/buddy.cpp (+1/-0)
storage/ndb/src/common/transporter/buddy.hpp (+1/-0)
storage/ndb/src/common/transporter/failoverSCI/failoverSCI.cpp (+1/-0)
storage/ndb/src/common/transporter/perftest/perfTransporterTest.cpp (+1/-0)
storage/ndb/src/common/transporter/priotest/prioSCI/prioSCI.cpp (+1/-0)
storage/ndb/src/common/transporter/priotest/prioSHM/prioSHM.cpp (+1/-0)
storage/ndb/src/common/transporter/priotest/prioTCP/prioTCP.cpp (+1/-0)
storage/ndb/src/common/transporter/priotest/prioTransporterTest.cpp (+1/-0)
storage/ndb/src/common/transporter/priotest/prioTransporterTest.hpp (+1/-0)
storage/ndb/src/common/util/BaseString.cpp (+1/-0)
storage/ndb/src/common/util/Bitmask.cpp (+1/-0)
storage/ndb/src/common/util/ConfigValues.cpp (+1/-0)
storage/ndb/src/common/util/File.cpp (+1/-0)
storage/ndb/src/common/util/InputStream.cpp (+1/-0)
storage/ndb/src/common/util/Makefile.am (+1/-0)
storage/ndb/src/common/util/NdbOut.cpp (+1/-0)
storage/ndb/src/common/util/NdbSqlUtil.cpp (+1/-0)
storage/ndb/src/common/util/OutputStream.cpp (+1/-0)
storage/ndb/src/common/util/Parser.cpp (+1/-0)
storage/ndb/src/common/util/Properties.cpp (+1/-0)
storage/ndb/src/common/util/SimpleProperties.cpp (+1/-0)
storage/ndb/src/common/util/SocketAuthenticator.cpp (+1/-0)
storage/ndb/src/common/util/SocketClient.cpp (+1/-0)
storage/ndb/src/common/util/SocketServer.cpp (+1/-0)
storage/ndb/src/common/util/basestring_vsnprintf.c (+1/-0)
storage/ndb/src/common/util/filetest/FileUnitTest.cpp (+1/-0)
storage/ndb/src/common/util/filetest/FileUnitTest.hpp (+1/-0)
storage/ndb/src/common/util/md5_hash.cpp (+1/-0)
storage/ndb/src/common/util/ndb_init.c (+1/-0)
storage/ndb/src/common/util/ndb_rand.c (+1/-0)
storage/ndb/src/common/util/new.cpp (+1/-0)
storage/ndb/src/common/util/random.c (+1/-0)
storage/ndb/src/common/util/socket_io.cpp (+1/-0)
storage/ndb/src/common/util/strdup.c (+1/-0)
storage/ndb/src/common/util/testConfigValues/testConfigValues.cpp (+1/-0)
storage/ndb/src/common/util/testProperties/testProperties.cpp (+1/-0)
storage/ndb/src/common/util/testSimpleProperties/sp_test.cpp (+1/-0)
storage/ndb/src/common/util/uucode.c (+1/-0)
storage/ndb/src/common/util/version.c (+1/-0)
storage/ndb/src/cw/Makefile.am (+1/-0)
storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.cpp (+1/-0)
storage/ndb/src/cw/cpcc-win32/C++/CPC_GUI.h (+1/-0)
storage/ndb/src/cw/cpcc-win32/C++/NdbControls.cpp (+1/-0)
storage/ndb/src/cw/cpcc-win32/C++/StdAfx.cpp (+1/-0)
storage/ndb/src/cw/cpcc-win32/C++/StdAfx.h (+1/-0)
storage/ndb/src/cw/cpcc-win32/C++/TreeView.cpp (+1/-0)
storage/ndb/src/cw/cpcc-win32/C++/TreeView.h (+1/-0)
storage/ndb/src/cw/cpcc-win32/C++/resource.h (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/CPC_Form.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/Computer.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/ComputerAddDialog.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/ComputerRemoveDialog.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/Database.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/PanelWizard.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/Process.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/ProcessDefineDialog.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/fileaccess/FileMgmt.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/simpleparser/SimpleCPCParser.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/socketcomm/SocketComm.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/socketcomm/myTcpClient.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/startDatabaseDlg.cs (+1/-0)
storage/ndb/src/cw/cpcc-win32/csharp/telnetclient/telnetClient.cs (+1/-0)
storage/ndb/src/cw/cpcd/APIService.cpp (+1/-0)
storage/ndb/src/cw/cpcd/APIService.hpp (+1/-0)
storage/ndb/src/cw/cpcd/CPCD.cpp (+1/-0)
storage/ndb/src/cw/cpcd/CPCD.hpp (+1/-0)
storage/ndb/src/cw/cpcd/Makefile.am (+1/-0)
storage/ndb/src/cw/cpcd/Monitor.cpp (+1/-0)
storage/ndb/src/cw/cpcd/Process.cpp (+1/-0)
storage/ndb/src/cw/cpcd/common.cpp (+1/-0)
storage/ndb/src/cw/cpcd/common.hpp (+1/-0)
storage/ndb/src/cw/test/socketclient/socketClientTest.cpp (+1/-0)
storage/ndb/src/cw/util/ClientInterface.cpp (+1/-0)
storage/ndb/src/cw/util/ClientInterface.hpp (+1/-0)
storage/ndb/src/cw/util/SocketRegistry.cpp (+1/-0)
storage/ndb/src/cw/util/SocketRegistry.hpp (+1/-0)
storage/ndb/src/cw/util/SocketService.cpp (+1/-0)
storage/ndb/src/cw/util/SocketService.hpp (+1/-0)
storage/ndb/src/kernel/Makefile.am (+1/-0)
storage/ndb/src/kernel/SimBlockList.cpp (+1/-0)
storage/ndb/src/kernel/blocks/Makefile.am (+1/-0)
storage/ndb/src/kernel/blocks/backup/Backup.cpp (+1/-0)
storage/ndb/src/kernel/blocks/backup/Backup.hpp (+1/-0)
storage/ndb/src/kernel/blocks/backup/BackupFormat.hpp (+1/-0)
storage/ndb/src/kernel/blocks/backup/BackupInit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/backup/FsBuffer.hpp (+1/-0)
storage/ndb/src/kernel/blocks/backup/Makefile.am (+1/-0)
storage/ndb/src/kernel/blocks/backup/read.cpp (+1/-0)
storage/ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp (+1/-0)
storage/ndb/src/kernel/blocks/cmvmi/Cmvmi.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbacc/Dbacc.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbacc/DbaccInit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdict/Dbdict.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdict/Makefile.am (+1/-0)
storage/ndb/src/kernel/blocks/dbdict/Master_AddTable.sfl (+1/-0)
storage/ndb/src/kernel/blocks/dbdict/SchemaFile.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdict/Slave_AddTable.sfl (+1/-0)
storage/ndb/src/kernel/blocks/dbdict/printSchemaFile.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdih/Dbdih.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdih/DbdihInit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdih/Makefile.am (+1/-0)
storage/ndb/src/kernel/blocks/dbdih/Sysfile.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdih/printSysfile.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbdih/printSysfile/printSysfile.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dblqh/Dblqh.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dblqh/DblqhInit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dblqh/Makefile.am (+1/-0)
storage/ndb/src/kernel/blocks/dblqh/redoLogReader/reader.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dblqh/redoLogReader/records.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dblqh/redoLogReader/records.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtc/Dbtc.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtc/DbtcInit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/AttributeOffset.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/Dbtup.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupAbort.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupBuffer.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupDiskAlloc.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupFixAlloc.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupGen.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupIndex.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupMeta.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupScan.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupStoredProcDef.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupTabDesMan.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupTrigger.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/DbtupVarAlloc.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/Makefile.am (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/Undo_buffer.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/Undo_buffer.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/test_varpage.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/tuppage.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtup/tuppage.hpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxCmp.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxDebug.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxGen.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxMaint.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxMeta.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxNode.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxSearch.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxStat.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbtux/DbtuxTree.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbutil/DbUtil.cpp (+1/-0)
storage/ndb/src/kernel/blocks/dbutil/DbUtil.hpp (+1/-0)
storage/ndb/src/kernel/blocks/diskpage.cpp (+1/-0)
storage/ndb/src/kernel/blocks/diskpage.hpp (+1/-0)
storage/ndb/src/kernel/blocks/lgman.hpp (+1/-0)
storage/ndb/src/kernel/blocks/mutexes.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbcntr/Ndbcntr.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrInit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrSysTable.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/AsyncFileTest/AsyncFileTest.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/CircularIndex.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/CircularIndex.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/Filename.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/Filename.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/MemoryChannel.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/MemoryChannel.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/MemoryChannelTest/MemoryChannelTest.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/OpenFiles.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/Pool.hpp (+1/-0)
storage/ndb/src/kernel/blocks/ndbfs/VoidFs.cpp (+1/-0)
storage/ndb/src/kernel/blocks/pgman.cpp (+1/-0)
storage/ndb/src/kernel/blocks/pgman.hpp (+1/-0)
storage/ndb/src/kernel/blocks/print_file.cpp (+1/-0)
storage/ndb/src/kernel/blocks/qmgr/Qmgr.hpp (+1/-0)
storage/ndb/src/kernel/blocks/qmgr/QmgrInit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/qmgr/QmgrMain.cpp (+1/-0)
storage/ndb/src/kernel/blocks/qmgr/timer.hpp (+1/-0)
storage/ndb/src/kernel/blocks/record_types.hpp (+1/-0)
storage/ndb/src/kernel/blocks/restore.cpp (+1/-0)
storage/ndb/src/kernel/blocks/restore.hpp (+1/-0)
storage/ndb/src/kernel/blocks/suma/Suma.cpp (+1/-0)
storage/ndb/src/kernel/blocks/suma/Suma.hpp (+1/-0)
storage/ndb/src/kernel/blocks/suma/SumaInit.cpp (+1/-0)
storage/ndb/src/kernel/blocks/trix/Trix.cpp (+1/-0)
storage/ndb/src/kernel/blocks/trix/Trix.hpp (+1/-0)
storage/ndb/src/kernel/blocks/tsman.cpp (+1/-0)
storage/ndb/src/kernel/blocks/tsman.hpp (+1/-0)
storage/ndb/src/kernel/error/ErrorHandlingMacros.hpp (+1/-0)
storage/ndb/src/kernel/error/ErrorReporter.cpp (+1/-0)
storage/ndb/src/kernel/error/ErrorReporter.hpp (+1/-0)
storage/ndb/src/kernel/error/Makefile.am (+1/-0)
storage/ndb/src/kernel/error/TimeModule.cpp (+1/-0)
storage/ndb/src/kernel/error/TimeModule.hpp (+1/-0)
storage/ndb/src/kernel/error/ndbd_exit_codes.c (+1/-0)
storage/ndb/src/kernel/main.cpp (+1/-0)
storage/ndb/src/kernel/vm/Array.hpp (+1/-0)
storage/ndb/src/kernel/vm/ArrayPool.hpp (+1/-0)
storage/ndb/src/kernel/vm/CArray.hpp (+1/-0)
storage/ndb/src/kernel/vm/Callback.hpp (+1/-0)
storage/ndb/src/kernel/vm/ClusterConfiguration.cpp (+1/-0)
storage/ndb/src/kernel/vm/ClusterConfiguration.hpp (+1/-0)
storage/ndb/src/kernel/vm/Configuration.hpp (+1/-0)
storage/ndb/src/kernel/vm/DLCFifoList.hpp (+1/-0)
storage/ndb/src/kernel/vm/DLCHashTable.hpp (+1/-0)
storage/ndb/src/kernel/vm/DLFifoList.hpp (+1/-0)
storage/ndb/src/kernel/vm/DLHashTable.hpp (+1/-0)
storage/ndb/src/kernel/vm/DLHashTable2.hpp (+1/-0)
storage/ndb/src/kernel/vm/DLList.hpp (+1/-0)
storage/ndb/src/kernel/vm/DataBuffer.hpp (+1/-0)
storage/ndb/src/kernel/vm/DynArr256.cpp (+1/-0)
storage/ndb/src/kernel/vm/DynArr256.hpp (+1/-0)
storage/ndb/src/kernel/vm/Emulator.cpp (+1/-0)
storage/ndb/src/kernel/vm/Emulator.hpp (+1/-0)
storage/ndb/src/kernel/vm/FastScheduler.cpp (+1/-0)
storage/ndb/src/kernel/vm/FastScheduler.hpp (+1/-0)
storage/ndb/src/kernel/vm/GlobalData.hpp (+1/-0)
storage/ndb/src/kernel/vm/KeyDescriptor.hpp (+1/-0)
storage/ndb/src/kernel/vm/KeyTable.hpp (+1/-0)
storage/ndb/src/kernel/vm/KeyTable2.hpp (+1/-0)
storage/ndb/src/kernel/vm/KeyTable2Ref.hpp (+1/-0)
storage/ndb/src/kernel/vm/LinearPool.hpp (+1/-0)
storage/ndb/src/kernel/vm/LongSignal.hpp (+1/-0)
storage/ndb/src/kernel/vm/Makefile.am (+1/-0)
storage/ndb/src/kernel/vm/Mutex.cpp (+1/-0)
storage/ndb/src/kernel/vm/Mutex.hpp (+1/-0)
storage/ndb/src/kernel/vm/NdbdSuperPool.cpp (+1/-0)
storage/ndb/src/kernel/vm/NdbdSuperPool.hpp (+1/-0)
storage/ndb/src/kernel/vm/Pool.cpp (+1/-0)
storage/ndb/src/kernel/vm/Pool.hpp (+1/-0)
storage/ndb/src/kernel/vm/Prio.hpp (+1/-0)
storage/ndb/src/kernel/vm/RWPool.cpp (+1/-0)
storage/ndb/src/kernel/vm/RWPool.hpp (+1/-0)
storage/ndb/src/kernel/vm/RequestTracker.hpp (+1/-0)
storage/ndb/src/kernel/vm/Rope.cpp (+1/-0)
storage/ndb/src/kernel/vm/Rope.hpp (+1/-0)
storage/ndb/src/kernel/vm/SLFifoList.hpp (+1/-0)
storage/ndb/src/kernel/vm/SLList.hpp (+1/-0)
storage/ndb/src/kernel/vm/SafeCounter.cpp (+1/-0)
storage/ndb/src/kernel/vm/SafeCounter.hpp (+1/-0)
storage/ndb/src/kernel/vm/SectionReader.cpp (+1/-0)
storage/ndb/src/kernel/vm/SectionReader.hpp (+1/-0)
storage/ndb/src/kernel/vm/SignalCounter.hpp (+1/-0)
storage/ndb/src/kernel/vm/SimBlockList.hpp (+1/-0)
storage/ndb/src/kernel/vm/SimplePropertiesSection.cpp (+1/-0)
storage/ndb/src/kernel/vm/SimulatedBlock.cpp (+1/-0)
storage/ndb/src/kernel/vm/SimulatedBlock.hpp (+1/-0)
storage/ndb/src/kernel/vm/SuperPool.cpp (+1/-0)
storage/ndb/src/kernel/vm/SuperPool.hpp (+1/-0)
storage/ndb/src/kernel/vm/ThreadConfig.cpp (+1/-0)
storage/ndb/src/kernel/vm/ThreadConfig.hpp (+1/-0)
storage/ndb/src/kernel/vm/TimeQueue.cpp (+1/-0)
storage/ndb/src/kernel/vm/TimeQueue.hpp (+1/-0)
storage/ndb/src/kernel/vm/TransporterCallback.cpp (+1/-0)
storage/ndb/src/kernel/vm/VMSignal.cpp (+1/-0)
storage/ndb/src/kernel/vm/VMSignal.hpp (+1/-0)
storage/ndb/src/kernel/vm/WOPool.cpp (+1/-0)
storage/ndb/src/kernel/vm/WOPool.hpp (+1/-0)
storage/ndb/src/kernel/vm/WaitQueue.hpp (+1/-0)
storage/ndb/src/kernel/vm/WatchDog.cpp (+1/-0)
storage/ndb/src/kernel/vm/WatchDog.hpp (+1/-0)
storage/ndb/src/kernel/vm/al_test/arrayListTest.cpp (+1/-0)
storage/ndb/src/kernel/vm/al_test/arrayPoolTest.cpp (+1/-0)
storage/ndb/src/kernel/vm/al_test/main.cpp (+1/-0)
storage/ndb/src/kernel/vm/bench_pool.cpp (+1/-0)
storage/ndb/src/kernel/vm/ndbd_malloc.cpp (+1/-0)
storage/ndb/src/kernel/vm/ndbd_malloc.hpp (+1/-0)
storage/ndb/src/kernel/vm/ndbd_malloc_impl.cpp (+1/-0)
storage/ndb/src/kernel/vm/ndbd_malloc_impl.hpp (+1/-0)
storage/ndb/src/kernel/vm/pc.hpp (+1/-0)
storage/ndb/src/kernel/vm/testCopy/rr.cpp (+1/-0)
storage/ndb/src/kernel/vm/testCopy/testCopy.cpp (+1/-0)
storage/ndb/src/kernel/vm/testDataBuffer/testDataBuffer.cpp (+1/-0)
storage/ndb/src/kernel/vm/testLongSig/testLongSig.cpp (+1/-0)
storage/ndb/src/kernel/vm/testSimplePropertiesSection/test.cpp (+1/-0)
storage/ndb/src/kernel/vm/testSuperPool.cpp (+1/-0)
storage/ndb/src/libndb.ver.in (+1/-0)
storage/ndb/src/mgmapi/LocalConfig.cpp (+1/-0)
storage/ndb/src/mgmapi/LocalConfig.hpp (+1/-0)
storage/ndb/src/mgmapi/Makefile.am (+1/-0)
storage/ndb/src/mgmapi/mgmapi_configuration.cpp (+1/-0)
storage/ndb/src/mgmapi/mgmapi_configuration.hpp (+1/-0)
storage/ndb/src/mgmapi/mgmapi_internal.h (+1/-0)
storage/ndb/src/mgmapi/ndb_logevent.hpp (+1/-0)
storage/ndb/src/mgmapi/test/keso.c (+1/-0)
storage/ndb/src/mgmapi/test/mgmSrvApi.cpp (+1/-0)
storage/ndb/src/mgmclient/CommandInterpreter.cpp (+1/-0)
storage/ndb/src/mgmclient/Makefile.am (+1/-0)
storage/ndb/src/mgmclient/ndb_mgmclient.h (+1/-0)
storage/ndb/src/mgmclient/ndb_mgmclient.hpp (+1/-0)
storage/ndb/src/mgmclient/test_cpcd/test_cpcd.cpp (+1/-0)
storage/ndb/src/mgmsrv/Config.cpp (+1/-0)
storage/ndb/src/mgmsrv/Config.hpp (+1/-0)
storage/ndb/src/mgmsrv/ConfigInfo.cpp (+1/-0)
storage/ndb/src/mgmsrv/ConfigInfo.hpp (+1/-0)
storage/ndb/src/mgmsrv/InitConfigFileParser.hpp (+1/-0)
storage/ndb/src/mgmsrv/Makefile.am (+1/-0)
storage/ndb/src/mgmsrv/MgmtSrvr.cpp (+1/-0)
storage/ndb/src/mgmsrv/MgmtSrvr.hpp (+1/-0)
storage/ndb/src/mgmsrv/MgmtSrvrConfig.cpp (+1/-0)
storage/ndb/src/mgmsrv/MgmtSrvrGeneralSignalHandling.cpp (+1/-0)
storage/ndb/src/mgmsrv/Services.cpp (+1/-0)
storage/ndb/src/mgmsrv/Services.hpp (+1/-0)
storage/ndb/src/mgmsrv/SignalQueue.cpp (+1/-0)
storage/ndb/src/mgmsrv/SignalQueue.hpp (+1/-0)
storage/ndb/src/mgmsrv/convertStrToInt.cpp (+1/-0)
storage/ndb/src/mgmsrv/convertStrToInt.hpp (+1/-0)
storage/ndb/src/mgmsrv/mkconfig/mkconfig.cpp (+1/-0)
storage/ndb/src/mgmsrv/ndb_mgmd_error.h (+1/-0)
storage/ndb/src/ndbapi/API.hpp (+1/-0)
storage/ndb/src/ndbapi/ClusterMgr.cpp (+1/-0)
storage/ndb/src/ndbapi/ClusterMgr.hpp (+1/-0)
storage/ndb/src/ndbapi/DictCache.hpp (+1/-0)
storage/ndb/src/ndbapi/Makefile.am (+1/-0)
storage/ndb/src/ndbapi/Ndb.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbApiSignal.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbApiSignal.hpp (+1/-0)
storage/ndb/src/ndbapi/NdbBlob.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbBlobImpl.hpp (+1/-0)
storage/ndb/src/ndbapi/NdbDictionary.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp (+1/-0)
storage/ndb/src/ndbapi/NdbErrorOut.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbEventOperation.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp (+1/-0)
storage/ndb/src/ndbapi/NdbImpl.hpp (+1/-0)
storage/ndb/src/ndbapi/NdbIndexOperation.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbIndexStat.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbLinHash.hpp (+1/-0)
storage/ndb/src/ndbapi/NdbOperation.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbOperationDefine.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbOperationExec.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbOperationInt.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbOperationScan.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbOperationSearch.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbPool.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbPoolImpl.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbPoolImpl.hpp (+1/-0)
storage/ndb/src/ndbapi/NdbRecAttr.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbReceiver.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbScanFilter.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbScanOperation.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbTransaction.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbTransactionScan.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbUtil.cpp (+1/-0)
storage/ndb/src/ndbapi/NdbUtil.hpp (+1/-0)
storage/ndb/src/ndbapi/NdbWaiter.hpp (+1/-0)
storage/ndb/src/ndbapi/Ndberr.cpp (+1/-0)
storage/ndb/src/ndbapi/Ndbif.cpp (+1/-0)
storage/ndb/src/ndbapi/Ndbinit.cpp (+1/-0)
storage/ndb/src/ndbapi/Ndblist.cpp (+1/-0)
storage/ndb/src/ndbapi/ObjectMap.cpp (+1/-0)
storage/ndb/src/ndbapi/ObjectMap.hpp (+1/-0)
storage/ndb/src/ndbapi/SignalSender.cpp (+1/-0)
storage/ndb/src/ndbapi/SignalSender.hpp (+1/-0)
storage/ndb/src/ndbapi/TransporterFacade.cpp (+1/-0)
storage/ndb/src/ndbapi/ndb_cluster_connection.cpp (+1/-0)
storage/ndb/src/ndbapi/ndb_cluster_connection_impl.hpp (+1/-0)
storage/ndb/src/ndbapi/ndb_internal.hpp (+1/-0)
storage/ndb/src/ndbapi/ndberror.c (+1/-0)
storage/ndb/src/ndbapi/ndberror_check.c (+1/-0)
storage/ndb/src/ndbapi/signal-sender/SignalSender.cpp (+1/-0)
storage/ndb/src/ndbapi/signal-sender/SignalSender.hpp (+1/-0)
storage/ndb/test/Makefile.am (+1/-0)
storage/ndb/test/include/AtrtClient.hpp (+1/-0)
storage/ndb/test/include/CpcClient.hpp (+1/-0)
storage/ndb/test/include/DbUtil.hpp (+1/-0)
storage/ndb/test/include/HugoAsynchTransactions.hpp (+1/-0)
storage/ndb/test/include/HugoCalculator.hpp (+1/-0)
storage/ndb/test/include/HugoOperations.hpp (+1/-0)
storage/ndb/test/include/HugoTransactions.hpp (+1/-0)
storage/ndb/test/include/NDBT.hpp (+1/-0)
storage/ndb/test/include/NDBT_DataSet.hpp (+1/-0)
storage/ndb/test/include/NDBT_DataSetTransaction.hpp (+1/-0)
storage/ndb/test/include/NDBT_Error.hpp (+1/-0)
storage/ndb/test/include/NDBT_Output.hpp (+1/-0)
storage/ndb/test/include/NDBT_ResultRow.hpp (+1/-0)
storage/ndb/test/include/NDBT_ReturnCodes.h (+1/-0)
storage/ndb/test/include/NDBT_Stats.hpp (+1/-0)
storage/ndb/test/include/NDBT_Table.hpp (+1/-0)
storage/ndb/test/include/NDBT_Tables.hpp (+1/-0)
storage/ndb/test/include/NDBT_Test.hpp (+1/-0)
storage/ndb/test/include/NDBT_Thread.hpp (+1/-0)
storage/ndb/test/include/NdbBackup.hpp (+1/-0)
storage/ndb/test/include/NdbConfig.hpp (+1/-0)
storage/ndb/test/include/NdbGrep.hpp (+1/-0)
storage/ndb/test/include/NdbMixRestarter.hpp (+1/-0)
storage/ndb/test/include/NdbRestarter.hpp (+1/-0)
storage/ndb/test/include/NdbRestarts.hpp (+1/-0)
storage/ndb/test/include/NdbSchemaCon.hpp (+1/-0)
storage/ndb/test/include/NdbSchemaOp.hpp (+1/-0)
storage/ndb/test/include/NdbTest.hpp (+1/-0)
storage/ndb/test/include/NdbTimer.hpp (+1/-0)
storage/ndb/test/include/TestNdbEventOperation.hpp (+1/-0)
storage/ndb/test/include/UtilTransactions.hpp (+1/-0)
storage/ndb/test/include/getarg.h (+1/-0)
storage/ndb/test/ndbapi/InsertRecs.cpp (+1/-0)
storage/ndb/test/ndbapi/Makefile.am (+1/-0)
storage/ndb/test/ndbapi/ScanFilter.hpp (+1/-0)
storage/ndb/test/ndbapi/ScanFunctions.hpp (+1/-0)
storage/ndb/test/ndbapi/ScanInterpretTest.hpp (+1/-0)
storage/ndb/test/ndbapi/TraceNdbApi.cpp (+1/-0)
storage/ndb/test/ndbapi/VerifyNdbApi.cpp (+1/-0)
storage/ndb/test/ndbapi/acid.cpp (+1/-0)
storage/ndb/test/ndbapi/acid2.cpp (+1/-0)
storage/ndb/test/ndbapi/acrt/NdbRepStress.cpp (+1/-0)
storage/ndb/test/ndbapi/adoInsertRecs.cpp (+1/-0)
storage/ndb/test/ndbapi/asyncGenerator.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/Bank.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/Bank.hpp (+1/-0)
storage/ndb/test/ndbapi/bank/BankLoad.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/Makefile.am (+1/-0)
storage/ndb/test/ndbapi/bank/bankCreator.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/bankMakeGL.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/bankSumAccounts.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/bankTimer.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/bankTransactionMaker.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/bankValidateAllGLs.cpp (+1/-0)
storage/ndb/test/ndbapi/bank/testBank.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/asyncGenerator.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/dbGenerator.h (+1/-0)
storage/ndb/test/ndbapi/bench/dbPopulate.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/dbPopulate.h (+1/-0)
storage/ndb/test/ndbapi/bench/macros.h (+1/-0)
storage/ndb/test/ndbapi/bench/mainAsyncGenerator.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/mainPopulate.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_async1.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_async2.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_error.hpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_schema.hpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_user_transaction.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_user_transaction2.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_user_transaction3.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_user_transaction4.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_user_transaction5.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/ndb_user_transaction6.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/testData.h (+1/-0)
storage/ndb/test/ndbapi/bench/testDefinitions.h (+1/-0)
storage/ndb/test/ndbapi/bench/userInterface.cpp (+1/-0)
storage/ndb/test/ndbapi/bench/userInterface.h (+1/-0)
storage/ndb/test/ndbapi/benchronja.cpp (+1/-0)
storage/ndb/test/ndbapi/bulk_copy.cpp (+1/-0)
storage/ndb/test/ndbapi/cdrserver.cpp (+1/-0)
storage/ndb/test/ndbapi/celloDb.cpp (+1/-0)
storage/ndb/test/ndbapi/create_all_tabs.cpp (+1/-0)
storage/ndb/test/ndbapi/create_tab.cpp (+1/-0)
storage/ndb/test/ndbapi/drop_all_tabs.cpp (+1/-0)
storage/ndb/test/ndbapi/flexAsynch.cpp (+1/-0)
storage/ndb/test/ndbapi/flexBench.cpp (+1/-0)
storage/ndb/test/ndbapi/flexHammer.cpp (+1/-0)
storage/ndb/test/ndbapi/flexScan.cpp (+1/-0)
storage/ndb/test/ndbapi/flexTT.cpp (+1/-0)
storage/ndb/test/ndbapi/flexTimedAsynch.cpp (+1/-0)
storage/ndb/test/ndbapi/flex_bench_mysql.cpp (+1/-0)
storage/ndb/test/ndbapi/index.cpp (+1/-0)
storage/ndb/test/ndbapi/index2.cpp (+1/-0)
storage/ndb/test/ndbapi/initronja.cpp (+1/-0)
storage/ndb/test/ndbapi/interpreterInTup.cpp (+1/-0)
storage/ndb/test/ndbapi/mainAsyncGenerator.cpp (+1/-0)
storage/ndb/test/ndbapi/msa.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_async1.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_async2.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_user_populate.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_user_transaction.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_user_transaction2.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_user_transaction3.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_user_transaction4.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_user_transaction5.cpp (+1/-0)
storage/ndb/test/ndbapi/ndb_user_transaction6.cpp (+1/-0)
storage/ndb/test/ndbapi/restarter.cpp (+1/-0)
storage/ndb/test/ndbapi/restarter2.cpp (+1/-0)
storage/ndb/test/ndbapi/restarts.cpp (+1/-0)
storage/ndb/test/ndbapi/size.cpp (+1/-0)
storage/ndb/test/ndbapi/slow_select.cpp (+1/-0)
storage/ndb/test/ndbapi/testBackup.cpp (+1/-0)
storage/ndb/test/ndbapi/testBasic.cpp (+1/-0)
storage/ndb/test/ndbapi/testBasicAsynch.cpp (+1/-0)
storage/ndb/test/ndbapi/testBitfield.cpp (+1/-0)
storage/ndb/test/ndbapi/testBlobs.cpp (+1/-0)
storage/ndb/test/ndbapi/testDataBuffers.cpp (+1/-0)
storage/ndb/test/ndbapi/testDeadlock.cpp (+1/-0)
storage/ndb/test/ndbapi/testDict.cpp (+1/-0)
storage/ndb/test/ndbapi/testGrepVerify.cpp (+1/-0)
storage/ndb/test/ndbapi/testIndex.cpp (+1/-0)
storage/ndb/test/ndbapi/testInterpreter.cpp (+1/-0)
storage/ndb/test/ndbapi/testLcp.cpp (+1/-0)
storage/ndb/test/ndbapi/testMgm.cpp (+1/-0)
storage/ndb/test/ndbapi/testNDBT.cpp (+1/-0)
storage/ndb/test/ndbapi/testNdbApi.cpp (+1/-0)
storage/ndb/test/ndbapi/testNodeRestart.cpp (+1/-0)
storage/ndb/test/ndbapi/testOIBasic.cpp (+1/-0)
storage/ndb/test/ndbapi/testOperations.cpp (+1/-0)
storage/ndb/test/ndbapi/testOrderedIndex.cpp (+1/-0)
storage/ndb/test/ndbapi/testPartitioning.cpp (+1/-0)
storage/ndb/test/ndbapi/testReadPerf.cpp (+1/-0)
storage/ndb/test/ndbapi/testRestartGci.cpp (+1/-0)
storage/ndb/test/ndbapi/testSRBank.cpp (+1/-0)
storage/ndb/test/ndbapi/testScan.cpp (+1/-0)
storage/ndb/test/ndbapi/testScanFilter.cpp (+1/-0)
storage/ndb/test/ndbapi/testScanInterpreter.cpp (+1/-0)
storage/ndb/test/ndbapi/testScanPerf.cpp (+1/-0)
storage/ndb/test/ndbapi/testSystemRestart.cpp (+1/-0)
storage/ndb/test/ndbapi/testTimeout.cpp (+1/-0)
storage/ndb/test/ndbapi/testTransactions.cpp (+1/-0)
storage/ndb/test/ndbapi/test_event.cpp (+1/-0)
storage/ndb/test/ndbapi/userInterface.cpp (+1/-0)
storage/ndb/test/ndbnet/test.run (+1/-0)
storage/ndb/test/ndbnet/testError.run (+1/-0)
storage/ndb/test/ndbnet/testMNF.run (+1/-0)
storage/ndb/test/ndbnet/testNR.run (+1/-0)
storage/ndb/test/ndbnet/testNR1.run (+1/-0)
storage/ndb/test/ndbnet/testNR4.run (+1/-0)
storage/ndb/test/ndbnet/testSRhang.run (+1/-0)
storage/ndb/test/ndbnet/testTR295.run (+1/-0)
storage/ndb/test/newtonapi/basic_test/basic/basic.cpp (+1/-0)
storage/ndb/test/newtonapi/basic_test/bulk_read/br_test.cpp (+1/-0)
storage/ndb/test/newtonapi/basic_test/common.cpp (+1/-0)
storage/ndb/test/newtonapi/basic_test/common.hpp (+1/-0)
storage/ndb/test/newtonapi/basic_test/ptr_binding/ptr_binding_test.cpp (+1/-0)
storage/ndb/test/newtonapi/basic_test/too_basic.cpp (+1/-0)
storage/ndb/test/newtonapi/perf_test/perf.cpp (+1/-0)
storage/ndb/test/odbc/SQL99_test/SQL99_test.cpp (+1/-0)
storage/ndb/test/odbc/SQL99_test/SQL99_test.h (+1/-0)
storage/ndb/test/odbc/client/NDBT_ALLOCHANDLE.cpp (+1/-0)
storage/ndb/test/odbc/client/NDBT_ALLOCHANDLE_HDBC.cpp (+1/-0)
storage/ndb/test/odbc/client/NDBT_SQLConnect.cpp (+1/-0)
storage/ndb/test/odbc/client/NDBT_SQLPrepare.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLAllocEnvTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLAllocHandleTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLAllocHandleTest_bf.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLBindColTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLBindParameterTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLCancelTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLCloseCursorTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLColAttributeTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLColAttributeTest1.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLColAttributeTest2.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLColAttributeTest3.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLConnectTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLCopyDescTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLDescribeColTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLDisconnectTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLDriverConnectTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLEndTranTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLErrorTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLExecDirectTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLExecuteTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLFetchScrollTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLFetchTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLFreeHandleTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLFreeStmtTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetConnectAttrTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetCursorNameTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetDataTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetDescFieldTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetDescRecTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetDiagFieldTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetDiagRecSimpleTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetDiagRecTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetEnvAttrTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetFunctionsTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetInfoTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetStmtAttrTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLGetTypeInfoTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLMoreResultsTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLNumResultColsTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLParamDataTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLPrepareTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLPutDataTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLRowCountTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLSetConnectAttrTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLSetCursorNameTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLSetDescFieldTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLSetDescRecTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLSetEnvAttrTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLSetStmtAttrTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLTablesTest.cpp (+1/-0)
storage/ndb/test/odbc/client/SQLTransactTest.cpp (+1/-0)
storage/ndb/test/odbc/client/common.hpp (+1/-0)
storage/ndb/test/odbc/client/main.cpp (+1/-0)
storage/ndb/test/odbc/driver/testOdbcDriver.cpp (+1/-0)
storage/ndb/test/odbc/test_compiler/test_compiler.cpp (+1/-0)
storage/ndb/test/run-test/16node-tests.txt (+1/-0)
storage/ndb/test/run-test/Makefile.am (+1/-0)
storage/ndb/test/run-test/atrt-analyze-result.sh (+1/-0)
storage/ndb/test/run-test/atrt-clear-result.sh (+1/-0)
storage/ndb/test/run-test/atrt-gather-result.sh (+1/-0)
storage/ndb/test/run-test/atrt-mysql-test-run (+1/-0)
storage/ndb/test/run-test/atrt-setup.sh (+1/-0)
storage/ndb/test/run-test/atrt-testBackup (+1/-0)
storage/ndb/test/run-test/atrt.hpp (+1/-0)
storage/ndb/test/run-test/basic.txt (+1/-0)
storage/ndb/test/run-test/daily-basic-tests.txt (+1/-0)
storage/ndb/test/run-test/daily-devel-tests.txt (+1/-0)
storage/ndb/test/run-test/make-config.sh (+1/-0)
storage/ndb/test/run-test/make-html-reports.sh (+1/-0)
storage/ndb/test/run-test/make-index.sh (+1/-0)
storage/ndb/test/run-test/ndb-autotest.sh (+1/-0)
storage/ndb/test/src/AtrtClient.cpp (+1/-0)
storage/ndb/test/src/CpcClient.cpp (+1/-0)
storage/ndb/test/src/DbUtil.cpp (+1/-0)
storage/ndb/test/src/HugoAsynchTransactions.cpp (+1/-0)
storage/ndb/test/src/HugoCalculator.cpp (+1/-0)
storage/ndb/test/src/HugoOperations.cpp (+1/-0)
storage/ndb/test/src/HugoTransactions.cpp (+1/-0)
storage/ndb/test/src/Makefile.am (+1/-0)
storage/ndb/test/src/NDBT_Error.cpp (+1/-0)
storage/ndb/test/src/NDBT_Output.cpp (+1/-0)
storage/ndb/test/src/NDBT_ResultRow.cpp (+1/-0)
storage/ndb/test/src/NDBT_ReturnCodes.cpp (+1/-0)
storage/ndb/test/src/NDBT_Table.cpp (+1/-0)
storage/ndb/test/src/NDBT_Tables.cpp (+1/-0)
storage/ndb/test/src/NDBT_Thread.cpp (+1/-0)
storage/ndb/test/src/NdbBackup.cpp (+1/-0)
storage/ndb/test/src/NdbConfig.cpp (+1/-0)
storage/ndb/test/src/NdbGrep.cpp (+1/-0)
storage/ndb/test/src/NdbMixRestarter.cpp (+1/-0)
storage/ndb/test/src/NdbRestarter.cpp (+1/-0)
storage/ndb/test/src/NdbRestarts.cpp (+1/-0)
storage/ndb/test/src/NdbSchemaCon.cpp (+1/-0)
storage/ndb/test/src/NdbSchemaOp.cpp (+1/-0)
storage/ndb/test/src/UtilTransactions.cpp (+1/-0)
storage/ndb/test/tools/Makefile.am (+1/-0)
storage/ndb/test/tools/copy_tab.cpp (+1/-0)
storage/ndb/test/tools/cpcc.cpp (+1/-0)
storage/ndb/test/tools/create_index.cpp (+1/-0)
storage/ndb/test/tools/hugoCalculator.cpp (+1/-0)
storage/ndb/test/tools/hugoFill.cpp (+1/-0)
storage/ndb/test/tools/hugoLoad.cpp (+1/-0)
storage/ndb/test/tools/hugoLockRecords.cpp (+1/-0)
storage/ndb/test/tools/hugoPkDelete.cpp (+1/-0)
storage/ndb/test/tools/hugoPkRead.cpp (+1/-0)
storage/ndb/test/tools/hugoPkReadRecord.cpp (+1/-0)
storage/ndb/test/tools/hugoPkUpdate.cpp (+1/-0)
storage/ndb/test/tools/hugoScanRead.cpp (+1/-0)
storage/ndb/test/tools/hugoScanUpdate.cpp (+1/-0)
storage/ndb/test/tools/listen.cpp (+1/-0)
storage/ndb/test/tools/rep_latency.cpp (+1/-0)
storage/ndb/test/tools/restart.cpp (+1/-0)
storage/ndb/test/tools/transproxy.cpp (+1/-0)
storage/ndb/test/tools/verify_index.cpp (+1/-0)
storage/ndb/tools/Makefile.am (+1/-0)
storage/ndb/tools/clean-links.sh (+1/-0)
storage/ndb/tools/make-errors.pl (+1/-0)
storage/ndb/tools/make-links.sh (+1/-0)
storage/ndb/tools/ndb_error_reporter (+1/-0)
storage/ndb/tools/ndb_size.pl (+1/-0)
storage/ndb/tools/ndb_test_platform.cpp (+1/-0)
storage/ndb/tools/ndbsql.cpp (+1/-0)
storage/ndb/tools/restore/Restore.cpp (+1/-0)
storage/ndb/tools/restore/Restore.hpp (+1/-0)
storage/ndb/tools/restore/consumer.cpp (+1/-0)
storage/ndb/tools/restore/consumer.hpp (+1/-0)
storage/ndb/tools/restore/consumer_printer.cpp (+1/-0)
storage/ndb/tools/restore/consumer_printer.hpp (+1/-0)
storage/ndb/tools/restore/consumer_restore.hpp (+1/-0)
storage/ndb/tools/restore/consumer_restorem.cpp (+1/-0)
storage/ndb/tools/restore/ndb_nodegroup_map.h (+1/-0)
storage/ndb/tools/rgrep (+1/-0)
storage/perfschema/ha_perfschema.cc (+7/-1)
storage/perfschema/ha_perfschema.h (+36/-1)
storage/perfschema/unittest/conf.txt (+1/-0)
strings/ctype-mb.c (+1/-1)
strings/ctype-uca.c (+1/-1)
support-files/MacOSX/Description.plist.sh (+1/-0)
support-files/MacOSX/Info.plist.sh (+1/-0)
support-files/MacOSX/MySQLCOM (+1/-0)
support-files/MacOSX/StartupItem.Description.plist (+1/-0)
support-files/MacOSX/StartupItem.Info.plist (+1/-0)
support-files/MacOSX/StartupItem.postinstall (+1/-0)
support-files/MacOSX/StartupParameters.plist.sh (+1/-0)
support-files/MacOSX/mwar-wrapper (+1/-0)
support-files/MacOSX/mwcc-wrapper (+1/-0)
support-files/MacOSX/postflight.sh (+1/-0)
support-files/MacOSX/preflight.sh (+1/-0)
support-files/RHEL4-SElinux/mysql.fc (+1/-0)
support-files/RHEL4-SElinux/mysql.te (+1/-0)
support-files/compiler_warnings.supp (+1/-0)
support-files/mysql.m4 (+1/-0)
tests/deadlock_test.c (+1/-0)
tests/drop_test.pl (+1/-0)
tests/export.pl (+1/-0)
tests/fork2_test.pl (+1/-0)
tests/index_corrupt.pl (+1/-0)
tests/insert_and_repair.pl (+1/-0)
tests/lock_test.pl (+1/-0)
tests/pmail.pl (+1/-0)
tests/rename_test.pl (+1/-0)
tests/table_types.pl (+1/-0)
tests/test_delayed_insert.pl (+1/-0)
tests/truncate.pl (+1/-0)
unittest/examples/simple-t.c (+1/-0)
To merge this branch: bzr merge lp:~laurynas-biveinis/percona-server/merge-5.5.37
Reviewer Review Type Date Requested Status
Alexey Kopytov (community) Approve
Review via email: mp+213113@code.launchpad.net

Description of the change

To post a comment you must log in.
Revision history for this message
Alexey Kopytov (akopytov) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'BUILD/cleanup'
--- BUILD/cleanup 2013-03-20 16:52:15 +0000
+++ BUILD/cleanup 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2003 MySQL AB3# Copyright (C) 2003 MySQL AB
4# 4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.7# the Free Software Foundation; version 2 of the License.
88
=== modified file 'BUILD/compile-alpha'
--- BUILD/compile-alpha 2013-03-20 16:52:15 +0000
+++ BUILD/compile-alpha 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2000, 2002 MySQL AB3# Copyright (C) 2000, 2002 MySQL AB
4# 4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.7# the Free Software Foundation; version 2 of the License.
88
=== modified file 'BUILD/compile-amd64-debug-max-no-ndb'
--- BUILD/compile-amd64-debug-max-no-ndb 2013-03-20 16:52:15 +0000
+++ BUILD/compile-amd64-debug-max-no-ndb 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2005, 2006 MySQL AB3# Copyright (C) 2005, 2006 MySQL AB
4#4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or5# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU Library General Public6# modify it under the terms of the GNU Library General Public
7# License as published by the Free Software Foundation; version 27# License as published by the Free Software Foundation; version 2
88
=== modified file 'BUILD/compile-amd64-gcov'
--- BUILD/compile-amd64-gcov 2013-03-20 16:52:15 +0000
+++ BUILD/compile-amd64-gcov 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# 4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.7# the Free Software Foundation; version 2 of the License.
88
=== modified file 'BUILD/compile-amd64-gprof'
--- BUILD/compile-amd64-gprof 2013-03-20 16:52:15 +0000
+++ BUILD/compile-amd64-gprof 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# 4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.7# the Free Software Foundation; version 2 of the License.
88
=== modified file 'BUILD/compile-amd64-max-sci'
--- BUILD/compile-amd64-max-sci 2013-03-19 14:53:48 +0000
+++ BUILD/compile-amd64-max-sci 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# 4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.7# the Free Software Foundation; version 2 of the License.
88
=== modified file 'BUILD/compile-pentium-cybozu'
--- BUILD/compile-pentium-cybozu 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium-cybozu 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2005 MySQL AB3# Copyright (C) 2005 MySQL AB
4# 4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.7# the Free Software Foundation; version 2 of the License.
88
=== modified file 'BUILD/compile-pentium-gcov'
--- BUILD/compile-pentium-gcov 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium-gcov 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2000, 2007 MySQL AB3# Copyright (C) 2000, 2007 MySQL AB
4# 4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.7# the Free Software Foundation; version 2 of the License.
88
=== modified file 'BUILD/compile-pentium-gprof'
--- BUILD/compile-pentium-gprof 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium-gprof 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2001, 2007 MySQL AB3# Copyright (C) 2001, 2007 MySQL AB
4# 4# Use is subject to license terms
5# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.7# the Free Software Foundation; version 2 of the License.
88
=== modified file 'BUILD/compile-pentium-icc'
--- BUILD/compile-pentium-icc 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium-icc 2014-03-27 17:18:17 +0000
@@ -1,7 +1,8 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2005 MySQL AB3# Copyright (C) 2005 MySQL AB
4# 4# Use is subject to license terms
5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.8# the Free Software Foundation; version 2 of the License.
89
=== modified file 'BUILD/compile-pentium-icc-yassl'
--- BUILD/compile-pentium-icc-yassl 2013-03-19 14:53:48 +0000
+++ BUILD/compile-pentium-icc-yassl 2014-03-27 17:18:17 +0000
@@ -1,7 +1,8 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2005 MySQL AB3# Copyright (C) 2005 MySQL AB
4# 4# Use is subject to license terms
5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.8# the Free Software Foundation; version 2 of the License.
89
=== modified file 'BUILD/compile-pentium-myodbc'
--- BUILD/compile-pentium-myodbc 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium-myodbc 2014-03-27 17:18:17 +0000
@@ -1,7 +1,8 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2000 MySQL AB3# Copyright (C) 2000 MySQL AB
4# 4# Use is subject to license terms
5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.8# the Free Software Foundation; version 2 of the License.
89
=== modified file 'BUILD/compile-pentium64'
--- BUILD/compile-pentium64 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium64 2014-03-27 17:18:17 +0000
@@ -1,6 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2006, 2007 MySQL AB3# Copyright (C) 2006, 2007 MySQL AB
4# Use is subject to license terms
4#5#
5# This program is free software; you can redistribute it and/or6# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU Library General Public7# modify it under the terms of the GNU Library General Public
78
=== modified file 'BUILD/compile-pentium64-gcov'
--- BUILD/compile-pentium64-gcov 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium64-gcov 2014-03-27 17:18:17 +0000
@@ -1,6 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# Use is subject to license terms
4# 5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
78
=== modified file 'BUILD/compile-pentium64-gprof'
--- BUILD/compile-pentium64-gprof 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium64-gprof 2014-03-27 17:18:17 +0000
@@ -1,6 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# Use is subject to license terms
4# 5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
78
=== modified file 'BUILD/compile-pentium64-max'
--- BUILD/compile-pentium64-max 2013-03-20 16:52:15 +0000
+++ BUILD/compile-pentium64-max 2014-03-27 17:18:17 +0000
@@ -1,6 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# Use is subject to license terms
4#5#
5# This program is free software; you can redistribute it and/or6# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU Library General Public7# modify it under the terms of the GNU Library General Public
78
=== modified file 'BUILD/compile-pentium64-max-sci'
--- BUILD/compile-pentium64-max-sci 2013-03-19 14:53:48 +0000
+++ BUILD/compile-pentium64-max-sci 2014-03-27 17:18:17 +0000
@@ -1,7 +1,8 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# 4# Use is subject to license terms
5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.8# the Free Software Foundation; version 2 of the License.
89
=== modified file 'BUILD/compile-ppc'
--- BUILD/compile-ppc 2013-03-20 16:52:15 +0000
+++ BUILD/compile-ppc 2014-03-27 17:18:17 +0000
@@ -1,7 +1,8 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2004 MySQL AB3# Copyright (C) 2004 MySQL AB
4# 4# Use is subject to license terms
5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.8# the Free Software Foundation; version 2 of the License.
89
=== modified file 'BUILD/compile-solaris-amd64'
--- BUILD/compile-solaris-amd64 2013-03-20 16:52:15 +0000
+++ BUILD/compile-solaris-amd64 2014-03-27 17:18:17 +0000
@@ -1,6 +1,7 @@
1#!/usr/bin/bash1#!/usr/bin/bash
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# Use is subject to license terms
4#5#
5# This program is free software; you can redistribute it and/or6# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU Library General Public7# modify it under the terms of the GNU Library General Public
78
=== modified file 'BUILD/compile-solaris-amd64-debug'
--- BUILD/compile-solaris-amd64-debug 2013-03-19 14:53:48 +0000
+++ BUILD/compile-solaris-amd64-debug 2014-03-27 17:18:17 +0000
@@ -1,7 +1,8 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2007 MySQL AB3# Copyright (C) 2007 MySQL AB
4# 4# Use is subject to license terms
5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.8# the Free Software Foundation; version 2 of the License.
89
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2014-02-13 16:38:10 +0000
+++ CMakeLists.txt 2014-03-27 17:18:17 +0000
@@ -1,4 +1,4 @@
1# Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.1# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
2# 2#
3# This program is free software; you can redistribute it and/or modify3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by4# it under the terms of the GNU General Public License as published by
@@ -347,14 +347,15 @@
347 SET(DEFAULT_SYSCONFDIR "${SYSCONFDIR}")347 SET(DEFAULT_SYSCONFDIR "${SYSCONFDIR}")
348ENDIF()348ENDIF()
349349
350OPTION(TMPDIR350SET(TMPDIR "P_tmpdir"
351"PATH to MySQL TMP dir. If unspecified, defaults to P_tmpdir in <stdio.h>" OFF)351 CACHE PATH
352IF(TMPDIR)352 "PATH to MySQL TMP dir. Defaults to the P_tmpdir macro in <stdio.h>")
353IF(TMPDIR STREQUAL "P_tmpdir")
354 # Do not quote it, to refer to the P_tmpdir macro.
355 SET(DEFAULT_TMPDIR "P_tmpdir")
356ELSE()
353 # Quote it, to make it a const char string.357 # Quote it, to make it a const char string.
354 SET(DEFAULT_TMPDIR "\"${TMPDIR}\"")358 SET(DEFAULT_TMPDIR "\"${TMPDIR}\"")
355ELSE()
356 # Do not quote it, to refer to the P_tmpdir macro in <stdio.h>.
357 SET(DEFAULT_TMPDIR "P_tmpdir")
358ENDIF()359ENDIF()
359360
360# Run platform tests361# Run platform tests
361362
=== modified file 'Makefile-ps'
--- Makefile-ps 2014-03-25 13:05:17 +0000
+++ Makefile-ps 2014-03-27 17:18:17 +0000
@@ -1,5 +1,5 @@
1MYSQL_VERSION=5.5.361MYSQL_VERSION=5.5.37
2PERCONA_SERVER_VERSION=rel34.22PERCONA_SERVER_VERSION=rel35.0
3PERCONA_SERVER ?=Percona-Server-$(MYSQL_VERSION)-$(PERCONA_SERVER_VERSION)3PERCONA_SERVER ?=Percona-Server-$(MYSQL_VERSION)-$(PERCONA_SERVER_VERSION)
4PERCONA_SERVER_SHORT_1 ?=Percona-Server-$(MYSQL_VERSION)4PERCONA_SERVER_SHORT_1 ?=Percona-Server-$(MYSQL_VERSION)
5PERCONA_SERVER_SHORT_2 ?=Percona-Server5PERCONA_SERVER_SHORT_2 ?=Percona-Server
66
=== modified file 'VERSION'
--- VERSION 2014-03-25 13:05:17 +0000
+++ VERSION 2014-03-27 17:18:17 +0000
@@ -1,4 +1,4 @@
1MYSQL_VERSION_MAJOR=51MYSQL_VERSION_MAJOR=5
2MYSQL_VERSION_MINOR=52MYSQL_VERSION_MINOR=5
3MYSQL_VERSION_PATCH=363MYSQL_VERSION_PATCH=37
4MYSQL_VERSION_EXTRA=-34.24MYSQL_VERSION_EXTRA=-35.0
55
=== modified file 'client/mysql.cc'
--- client/mysql.cc 2013-06-27 15:35:20 +0000
+++ client/mysql.cc 2014-03-27 17:18:17 +0000
@@ -1,5 +1,5 @@
1/*1/*
2 Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.2 Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
33
4 This program is free software; you can redistribute it and/or modify4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by5 it under the terms of the GNU General Public License as published by
@@ -1174,9 +1174,9 @@
11741174
1175 put_info("Welcome to the MySQL monitor. Commands end with ; or \\g.",1175 put_info("Welcome to the MySQL monitor. Commands end with ; or \\g.",
1176 INFO_INFO);1176 INFO_INFO);
1177 sprintf((char*) glob_buffer.ptr(),1177 snprintf((char*) glob_buffer.ptr(), glob_buffer.alloced_length(),
1178 "Your MySQL connection id is %lu\nServer version: %s\n",1178 "Your MySQL connection id is %lu\nServer version: %s\n",
1179 mysql_thread_id(&mysql), server_version_string(&mysql));1179 mysql_thread_id(&mysql), server_version_string(&mysql));
1180 put_info((char*) glob_buffer.ptr(),INFO_INFO);1180 put_info((char*) glob_buffer.ptr(),INFO_INFO);
11811181
1182 put_info(ORACLE_WELCOME_COPYRIGHT_NOTICE("2000"), INFO_INFO);1182 put_info(ORACLE_WELCOME_COPYRIGHT_NOTICE("2000"), INFO_INFO);
11831183
=== modified file 'client/mysql_upgrade.c'
--- client/mysql_upgrade.c 2013-03-22 09:25:30 +0000
+++ client/mysql_upgrade.c 2014-03-27 17:18:17 +0000
@@ -462,6 +462,7 @@
462 */462 */
463 if (run_tool(tool_executable_name,463 if (run_tool(tool_executable_name,
464 &ds_tmp, /* Get output from command, discard*/464 &ds_tmp, /* Get output from command, discard*/
465 "--no-defaults",
465 "--help",466 "--help",
466 "2>&1",467 "2>&1",
467 IF_WIN("> NUL", "> /dev/null"),468 IF_WIN("> NUL", "> /dev/null"),
468469
=== modified file 'cmake/install_macros.cmake'
--- cmake/install_macros.cmake 2012-02-16 09:48:16 +0000
+++ cmake/install_macros.cmake 2014-03-27 17:18:17 +0000
@@ -1,4 +1,4 @@
1# Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.1# Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved.
2# 2#
3# This program is free software; you can redistribute it and/or modify3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by4# it under the terms of the GNU General Public License as published by
@@ -111,28 +111,28 @@
111ENDFUNCTION()111ENDFUNCTION()
112112
113# Install symbolic link to CMake target. 113# Install symbolic link to CMake target.
114# the link is created in the same directory as target114# We do 'cd path; ln -s target_name link_name'
115# and extension will be the same as for target file.115# We also add an INSTALL target for "${path}/${link_name}"
116MACRO(INSTALL_SYMLINK linkname target destination component)116MACRO(INSTALL_SYMLINK target target_name link_name destination component)
117IF(UNIX)117IF(UNIX)
118 GET_TARGET_PROPERTY(location ${target} LOCATION)118 GET_TARGET_PROPERTY(location ${target} LOCATION)
119 GET_FILENAME_COMPONENT(path ${location} PATH)119 GET_FILENAME_COMPONENT(path ${location} PATH)
120 GET_FILENAME_COMPONENT(name ${location} NAME)120
121 SET(output ${path}/${linkname})121 SET(output ${path}/${link_name})
122 ADD_CUSTOM_COMMAND(122 ADD_CUSTOM_COMMAND(
123 OUTPUT ${output}123 OUTPUT ${output}
124 COMMAND ${CMAKE_COMMAND} ARGS -E remove -f ${output}124 COMMAND ${CMAKE_COMMAND} ARGS -E remove -f ${output}
125 COMMAND ${CMAKE_COMMAND} ARGS -E create_symlink 125 COMMAND ${CMAKE_COMMAND} ARGS -E create_symlink
126 ${name} 126 ${target_name}
127 ${linkname}127 ${link_name}
128 WORKING_DIRECTORY ${path}128 WORKING_DIRECTORY ${path}
129 DEPENDS ${target}129 DEPENDS ${target}
130 )130 )
131 131
132 ADD_CUSTOM_TARGET(symlink_${linkname}132 ADD_CUSTOM_TARGET(symlink_${link_name}
133 ALL133 ALL
134 DEPENDS ${output})134 DEPENDS ${output})
135 SET_TARGET_PROPERTIES(symlink_${linkname} PROPERTIES CLEAN_DIRECT_OUTPUT 1)135 SET_TARGET_PROPERTIES(symlink_${link_name} PROPERTIES CLEAN_DIRECT_OUTPUT 1)
136 IF(CMAKE_GENERATOR MATCHES "Xcode")136 IF(CMAKE_GENERATOR MATCHES "Xcode")
137 # For Xcode, replace project config with install config137 # For Xcode, replace project config with install config
138 STRING(REPLACE "${CMAKE_CFG_INTDIR}" 138 STRING(REPLACE "${CMAKE_CFG_INTDIR}"
139139
=== modified file 'cmake/libutils.cmake'
--- cmake/libutils.cmake 2011-06-30 15:46:53 +0000
+++ cmake/libutils.cmake 2014-03-27 17:18:17 +0000
@@ -1,4 +1,4 @@
1# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.1# Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved.
2# 2#
3# This program is free software; you can redistribute it and/or modify3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by4# it under the terms of the GNU General Public License as published by
@@ -158,6 +158,7 @@
158 IF(OSLIBS)158 IF(OSLIBS)
159 LIST(REMOVE_DUPLICATES OSLIBS)159 LIST(REMOVE_DUPLICATES OSLIBS)
160 TARGET_LINK_LIBRARIES(${TARGET} ${OSLIBS})160 TARGET_LINK_LIBRARIES(${TARGET} ${OSLIBS})
161 MESSAGE(STATUS "Library ${TARGET} depends on OSLIBS ${OSLIBS}")
161 ENDIF()162 ENDIF()
162163
163 # Make the generated dummy source file depended on all static input164 # Make the generated dummy source file depended on all static input
164165
=== modified file 'cmake/mysql_version.cmake'
--- cmake/mysql_version.cmake 2013-10-09 06:01:37 +0000
+++ cmake/mysql_version.cmake 2014-03-27 17:18:17 +0000
@@ -1,4 +1,4 @@
1# Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.1# Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved.
2# 2#
3# This program is free software; you can redistribute it and/or modify3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by4# it under the terms of the GNU General Public License as published by
@@ -18,6 +18,7 @@
18#18#
1919
20SET(SHARED_LIB_MAJOR_VERSION "18")20SET(SHARED_LIB_MAJOR_VERSION "18")
21SET(SHARED_LIB_MINOR_VERSION "0")
21SET(PROTOCOL_VERSION "10")22SET(PROTOCOL_VERSION "10")
22SET(DOT_FRM_VERSION "6")23SET(DOT_FRM_VERSION "6")
2324
2425
=== modified file 'extra/yassl/README'
--- extra/yassl/README 2012-11-21 13:44:15 +0000
+++ extra/yassl/README 2014-03-27 17:18:17 +0000
@@ -12,7 +12,36 @@
1212
13*** end Note ***13*** end Note ***
1414
15yaSSL Release notes, version 2.2.2 (7/5/2012)15yaSSL Release notes, version 2.3.0 (12/5/2013)
16
17 This release of yaSSL updates asm for newer GCC versions.
18
19See normal build instructions below under 1.0.6.
20See libcurl build instructions below under 1.3.0 and note in 1.5.8.
21
22
23*****************yaSSL Release notes, version 2.2.3b (4/23/2013)
24
25 This release of yaSSL updates the test certificates as they were expired
26
27See normal build instructions below under 1.0.6.
28See libcurl build instructions below under 1.3.0 and note in 1.5.8.
29
30
31*****************yaSSL Release notes, version 2.2.2d (2/5/2013)
32
33 This release of yaSSL contains countermeasuers for the Lucky 13 TLS 1.1
34 CBC timing padding attack identified by Nadhem AlFardan and Kenneth Paterson
35 see: http://www.isg.rhul.ac.uk/tls/
36
37 It also adds SHA2 certificate verification and better checks for malicious
38 input.
39
40See normal build instructions below under 1.0.6.
41See libcurl build instructions below under 1.3.0 and note in 1.5.8.
42
43
44*****************yaSSL Release notes, version 2.2.2 (7/5/2012)
1645
17 This release of yaSSL contains bug fixes and more security checks around46 This release of yaSSL contains bug fixes and more security checks around
18 malicious certificates.47 malicious certificates.
1948
=== modified file 'extra/yassl/certs/ca-cert.pem'
--- extra/yassl/certs/ca-cert.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/ca-cert.pem 2014-03-27 17:18:17 +0000
@@ -1,56 +1,87 @@
1-----BEGIN CERTIFICATE-----
2MIIEnjCCA4agAwIBAgIJAOnQp195JfQ8MA0GCSqGSIb3DQEBBQUAMIGQMQswCQYD
3VQQGEwJVUzEQMA4GA1UECBMHTW9udGFuYTEQMA4GA1UEBxMHQm96ZW1hbjERMA8G
4A1UEChMIU2F3dG9vdGgxEzARBgNVBAsTCkNvbnN1bHRpbmcxFjAUBgNVBAMTDXd3
5dy55YXNzbC5jb20xHTAbBgkqhkiG9w0BCQEWDmluZm9AeWFzc2wuY29tMB4XDTEx
6MTAyNDE4MTgxNVoXDTE0MDcyMDE4MTgxNVowgZAxCzAJBgNVBAYTAlVTMRAwDgYD
7VQQIEwdNb250YW5hMRAwDgYDVQQHEwdCb3plbWFuMREwDwYDVQQKEwhTYXd0b290
8aDETMBEGA1UECxMKQ29uc3VsdGluZzEWMBQGA1UEAxMNd3d3Lnlhc3NsLmNvbTEd
9MBsGCSqGSIb3DQEJARYOaW5mb0B5YXNzbC5jb20wggEiMA0GCSqGSIb3DQEBAQUA
10A4IBDwAwggEKAoIBAQC/DMotFLIehEJbzTgfSvJNdRDxtjWf38p9A5jTrN4DZu4q
118diwfW4HVAsQmCFNgMsSIOfMT95FfclydzLqypC7aVIQAy+o85XF8YtiVhvvZ2+k
12EEGVrQqb46XAsNJwdlAwW6joCCx87aeieo04KRysx+3yfJWwlYJ9SVw4zXcl772A
13dVOUPD3KY1ufFbXTHRMvGdE823Y6zLh9yeXC19pAb9gh3HMbQi1TnP4a/H2rejY/
14mN6EfAVnzmoUOIep8Yy1aMtof3EgK/WgY/VWL6Mm0rdvsVoX1ziZCP6TWG/+wxNJ
15CBYLp01nAFIxZyNOmO1RRR25BNkL7Ngos0u97TZ5AgMBAAGjgfgwgfUwHQYDVR0O
16BBYEFCeOZxF0wyYdP+0zY7Ok2B0w5ejVMIHFBgNVHSMEgb0wgbqAFCeOZxF0wyYd
17P+0zY7Ok2B0w5ejVoYGWpIGTMIGQMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHTW9u
18dGFuYTEQMA4GA1UEBxMHQm96ZW1hbjERMA8GA1UEChMIU2F3dG9vdGgxEzARBgNV
19BAsTCkNvbnN1bHRpbmcxFjAUBgNVBAMTDXd3dy55YXNzbC5jb20xHTAbBgkqhkiG
209w0BCQEWDmluZm9AeWFzc2wuY29tggkA6dCnX3kl9DwwDAYDVR0TBAUwAwEB/zAN
21BgkqhkiG9w0BAQUFAAOCAQEAX4YU9FGLvKVOMNperJr4bNkmS5P54xyJb57us513
22PokgdqPm6IYVIdviM7I01dCf88Gkh5Jc+dH/MC+OA7yzPAwyo5BfGpAer53zntcH
23Aql9J2ZjL68Y16wYmIyDjzjzC6w2EHX7ynYTUFsCj3O/46Dug1IlVM4mzpy9L3mr
24G2C4kvEDwPw7CNnArdVyCCWAYS3cn6eDYgdH4AdMSwcwBKmHHFV/BxLQy0Jdy89m
25ARoX7vkPYLfbb2jlTkFibtNvYE9LJ97PGAfxE13LP6klRNpSXMgE4VYS9SqQTtHi
26rwG1I6HsMdp7Y2nEuPPnzqE9wNtt87LZRsifw7hwWh9/yg==
27-----END CERTIFICATE-----
1Certificate:28Certificate:
2 Data:29 Data:
3 Version: 3 (0x2)30 Version: 3 (0x2)
4 Serial Number:31 Serial Number:
5 8a:37:22:65:73:f5:aa:e832 e9:d0:a7:5f:79:25:f4:3c
6 Signature Algorithm: md5WithRSAEncryption33 Signature Algorithm: sha1WithRSAEncryption
7 Issuer: C=US, ST=Montana, L=Bozeman, O=sawtooth, OU=consulting, CN=www.sawtooth-consulting.com/emailAddress=info@yassl.com34 Issuer: C=US, ST=Montana, L=Bozeman, O=Sawtooth, OU=Consulting, CN=www.yassl.com/emailAddress=info@yassl.com
8 Validity35 Validity
9 Not Before: Jun 30 18:47:10 2010 GMT36 Not Before: Oct 24 18:18:15 2011 GMT
10 Not After : Mar 26 18:47:10 2013 GMT37 Not After : Jul 20 18:18:15 2014 GMT
11 Subject: C=US, ST=Montana, L=Bozeman, O=sawtooth, OU=consulting, CN=www.sawtooth-consulting.com/emailAddress=info@yassl.com38 Subject: C=US, ST=Montana, L=Bozeman, O=Sawtooth, OU=Consulting, CN=www.yassl.com/emailAddress=info@yassl.com
12 Subject Public Key Info:39 Subject Public Key Info:
13 Public Key Algorithm: rsaEncryption40 Public Key Algorithm: rsaEncryption
14 RSA Public Key: (512 bit)41 RSA Public Key: (2048 bit)
15 Modulus (512 bit):42 Modulus (2048 bit):
16 00:97:30:b9:1a:92:ef:25:4f:ca:4c:11:31:95:1a:43 00:bf:0c:ca:2d:14:b2:1e:84:42:5b:cd:38:1f:4a:
17 e1:c0:10:19:0a:20:b9:37:80:1a:57:38:02:4e:1b:44 f2:4d:75:10:f1:b6:35:9f:df:ca:7d:03:98:d3:ac:
18 c5:0f:28:4f:da:e3:c9:16:aa:50:bd:4a:fb:b7:71:45 de:03:66:ee:2a:f1:d8:b0:7d:6e:07:54:0b:10:98:
19 c7:35:cc:63:81:c1:dd:9d:33:f9:38:16:88:32:a0:46 21:4d:80:cb:12:20:e7:cc:4f:de:45:7d:c9:72:77:
20 aa:56:23:03:a347 32:ea:ca:90:bb:69:52:10:03:2f:a8:f3:95:c5:f1:
48 8b:62:56:1b:ef:67:6f:a4:10:41:95:ad:0a:9b:e3:
49 a5:c0:b0:d2:70:76:50:30:5b:a8:e8:08:2c:7c:ed:
50 a7:a2:7a:8d:38:29:1c:ac:c7:ed:f2:7c:95:b0:95:
51 82:7d:49:5c:38:cd:77:25:ef:bd:80:75:53:94:3c:
52 3d:ca:63:5b:9f:15:b5:d3:1d:13:2f:19:d1:3c:db:
53 76:3a:cc:b8:7d:c9:e5:c2:d7:da:40:6f:d8:21:dc:
54 73:1b:42:2d:53:9c:fe:1a:fc:7d:ab:7a:36:3f:98:
55 de:84:7c:05:67:ce:6a:14:38:87:a9:f1:8c:b5:68:
56 cb:68:7f:71:20:2b:f5:a0:63:f5:56:2f:a3:26:d2:
57 b7:6f:b1:5a:17:d7:38:99:08:fe:93:58:6f:fe:c3:
58 13:49:08:16:0b:a7:4d:67:00:52:31:67:23:4e:98:
59 ed:51:45:1d:b9:04:d9:0b:ec:d8:28:b3:4b:bd:ed:
60 36:79
21 Exponent: 65537 (0x10001)61 Exponent: 65537 (0x10001)
22 X509v3 extensions:62 X509v3 extensions:
23 X509v3 Subject Key Identifier: 63 X509v3 Subject Key Identifier:
24 3B:66:FD:A0:40:C6:F4:E2:70:CF:21:1A:0C:4F:67:FE:B7:4B:42:0964 27:8E:67:11:74:C3:26:1D:3F:ED:33:63:B3:A4:D8:1D:30:E5:E8:D5
25 X509v3 Authority Key Identifier: 65 X509v3 Authority Key Identifier:
26 keyid:3B:66:FD:A0:40:C6:F4:E2:70:CF:21:1A:0C:4F:67:FE:B7:4B:42:0966 keyid:27:8E:67:11:74:C3:26:1D:3F:ED:33:63:B3:A4:D8:1D:30:E5:E8:D5
27 DirName:/C=US/ST=Montana/L=Bozeman/O=sawtooth/OU=consulting/CN=www.sawtooth-consulting.com/emailAddress=info@yassl.com67 DirName:/C=US/ST=Montana/L=Bozeman/O=Sawtooth/OU=Consulting/CN=www.yassl.com/emailAddress=info@yassl.com
28 serial:8A:37:22:65:73:F5:AA:E868 serial:E9:D0:A7:5F:79:25:F4:3C
2969
30 X509v3 Basic Constraints: 70 X509v3 Basic Constraints:
31 CA:TRUE71 CA:TRUE
32 Signature Algorithm: md5WithRSAEncryption72 Signature Algorithm: sha1WithRSAEncryption
33 32:65:a2:b1:dc:6d:e0:8d:8b:c8:58:29:8e:b8:18:4b:62:88:73 5f:86:14:f4:51:8b:bc:a5:4e:30:da:5e:ac:9a:f8:6c:d9:26:
34 13:67:f8:6c:75:46:75:8f:8a:19:a6:a3:d5:3c:fc:57:4e:7a:74 4b:93:f9:e3:1c:89:6f:9e:ee:b3:9d:77:3e:89:20:76:a3:e6:
35 68:a9:fc:93:dc:ae:29:7d:bb:4e:ec:ea:55:fa:a4:e3:00:61:75 e8:86:15:21:db:e2:33:b2:34:d5:d0:9f:f3:c1:a4:87:92:5c:
36 f4:b0:34:6d:d1:d5:a4:64:24:f876 f9:d1:ff:30:2f:8e:03:bc:b3:3c:0c:32:a3:90:5f:1a:90:1e:
37-----BEGIN CERTIFICATE-----77 af:9d:f3:9e:d7:07:02:a9:7d:27:66:63:2f:af:18:d7:ac:18:
38MIIDQDCCAuqgAwIBAgIJAIo3ImVz9aroMA0GCSqGSIb3DQEBBAUAMIGeMQswCQYD78 98:8c:83:8f:38:f3:0b:ac:36:10:75:fb:ca:76:13:50:5b:02:
39VQQGEwJVUzEQMA4GA1UECBMHTW9udGFuYTEQMA4GA1UEBxMHQm96ZW1hbjERMA8G79 8f:73:bf:e3:a0:ee:83:52:25:54:ce:26:ce:9c:bd:2f:79:ab:
40A1UEChMIc2F3dG9vdGgxEzARBgNVBAsTCmNvbnN1bHRpbmcxJDAiBgNVBAMTG3d380 1b:60:b8:92:f1:03:c0:fc:3b:08:d9:c0:ad:d5:72:08:25:80:
41dy5zYXd0b290aC1jb25zdWx0aW5nLmNvbTEdMBsGCSqGSIb3DQEJARYOaW5mb0B581 61:2d:dc:9f:a7:83:62:07:47:e0:07:4c:4b:07:30:04:a9:87:
42YXNzbC5jb20wHhcNMTAwNjMwMTg0NzEwWhcNMTMwMzI2MTg0NzEwWjCBnjELMAkG82 1c:55:7f:07:12:d0:cb:42:5d:cb:cf:66:01:1a:17:ee:f9:0f:
43A1UEBhMCVVMxEDAOBgNVBAgTB01vbnRhbmExEDAOBgNVBAcTB0JvemVtYW4xETAP83 60:b7:db:6f:68:e5:4e:41:62:6e:d3:6f:60:4f:4b:27:de:cf:
44BgNVBAoTCHNhd3Rvb3RoMRMwEQYDVQQLEwpjb25zdWx0aW5nMSQwIgYDVQQDExt384 18:07:f1:13:5d:cb:3f:a9:25:44:da:52:5c:c8:04:e1:56:12:
45d3cuc2F3dG9vdGgtY29uc3VsdGluZy5jb20xHTAbBgkqhkiG9w0BCQEWDmluZm9A85 f5:2a:90:4e:d1:e2:af:01:b5:23:a1:ec:31:da:7b:63:69:c4:
46eWFzc2wuY29tMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAJcwuRqS7yVPykwRMZUa86 b8:f3:e7:ce:a1:3d:c0:db:6d:f3:b2:d9:46:c8:9f:c3:b8:70:
474cAQGQoguTeAGlc4Ak4bxQ8oT9rjyRaqUL1K+7dxxzXMY4HB3Z0z+TgWiDKgqlYj87 5a:1f:7f:ca
48A6MCAwEAAaOCAQcwggEDMB0GA1UdDgQWBBQ7Zv2gQMb04nDPIRoMT2f+t0tCCTCB
490wYDVR0jBIHLMIHIgBQ7Zv2gQMb04nDPIRoMT2f+t0tCCaGBpKSBoTCBnjELMAkG
50A1UEBhMCVVMxEDAOBgNVBAgTB01vbnRhbmExEDAOBgNVBAcTB0JvemVtYW4xETAP
51BgNVBAoTCHNhd3Rvb3RoMRMwEQYDVQQLEwpjb25zdWx0aW5nMSQwIgYDVQQDExt3
52d3cuc2F3dG9vdGgtY29uc3VsdGluZy5jb20xHTAbBgkqhkiG9w0BCQEWDmluZm9A
53eWFzc2wuY29tggkAijciZXP1qugwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQQF
54AANBADJlorHcbeCNi8hYKY64GEtiiBNn+Gx1RnWPihmmo9U8/FdOemip/JPcril9
55u07s6lX6pOMAYfSwNG3R1aRkJPg=
56-----END CERTIFICATE-----
5788
=== modified file 'extra/yassl/certs/ca-key.pem'
--- extra/yassl/certs/ca-key.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/ca-key.pem 2014-03-27 17:18:17 +0000
@@ -1,9 +1,27 @@
1-----BEGIN RSA PRIVATE KEY-----1-----BEGIN RSA PRIVATE KEY-----
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
9-----END RSA PRIVATE KEY-----27-----END RSA PRIVATE KEY-----
1028
=== modified file 'extra/yassl/certs/client-cert.pem'
--- extra/yassl/certs/client-cert.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/client-cert.pem 2014-03-27 17:18:17 +0000
@@ -2,54 +2,86 @@
2 Data:2 Data:
3 Version: 3 (0x2)3 Version: 3 (0x2)
4 Serial Number:4 Serial Number:
5 c5:d7:6c:11:36:f0:35:e15 87:4a:75:be:91:66:d8:3d
6 Signature Algorithm: md5WithRSAEncryption6 Signature Algorithm: sha1WithRSAEncryption
7 Issuer: C=US, ST=Oregon, L=Portland, O=yaSSL, OU=programming, CN=www.yassl.com/emailAddress=info@yassl.com7 Issuer: C=US, ST=Oregon, L=Portland, O=yaSSL, OU=Programming, CN=www.yassl.com/emailAddress=info@yassl.com
8 Validity8 Validity
9 Not Before: Jun 30 18:39:39 2010 GMT9 Not Before: Oct 24 18:21:55 2011 GMT
10 Not After : Mar 26 18:39:40 2013 GMT10 Not After : Jul 20 18:21:55 2014 GMT
11 Subject: C=US, ST=Oregon, L=Portland, O=yaSSL, OU=programming, CN=www.yassl.com/emailAddress=info@yassl.com11 Subject: C=US, ST=Oregon, L=Portland, O=yaSSL, OU=Programming, CN=www.yassl.com/emailAddress=info@yassl.com
12 Subject Public Key Info:12 Subject Public Key Info:
13 Public Key Algorithm: rsaEncryption13 Public Key Algorithm: rsaEncryption
14 RSA Public Key: (512 bit)14 RSA Public Key: (2048 bit)
15 Modulus (512 bit):15 Modulus (2048 bit):
16 00:bd:51:4a:14:fd:6a:19:84:0c:33:38:fc:27:32:16 00:c3:03:d1:2b:fe:39:a4:32:45:3b:53:c8:84:2b:
17 9c:97:0b:fc:a4:18:60:69:4e:d9:d8:78:50:0b:e9:17 2a:7c:74:9a:bd:aa:2a:52:07:47:d6:a6:36:b2:07:
18 20:5d:d6:1d:70:1c:0c:24:9f:23:82:cc:3a:01:d5:18 32:8e:d0:ba:69:7b:c6:c3:44:9e:d4:81:48:fd:2d:
19 97:17:b2:73:6c:86:cf:b5:f1:e5:ce:68:0c:d9:a2:19 68:a2:8b:67:bb:a1:75:c8:36:2c:4a:d2:1b:f7:8b:
20 12:39:7c:f2:5320 ba:cf:0d:f9:ef:ec:f1:81:1e:7b:9b:03:47:9a:bf:
21 65:cc:7f:65:24:69:a6:e8:14:89:5b:e4:34:f7:c5:
22 b0:14:93:f5:67:7b:3a:7a:78:e1:01:56:56:91:a6:
23 13:42:8d:d2:3c:40:9c:4c:ef:d1:86:df:37:51:1b:
24 0c:a1:3b:f5:f1:a3:4a:35:e4:e1:ce:96:df:1b:7e:
25 bf:4e:97:d0:10:e8:a8:08:30:81:af:20:0b:43:14:
26 c5:74:67:b4:32:82:6f:8d:86:c2:88:40:99:36:83:
27 ba:1e:40:72:22:17:d7:52:65:24:73:b0:ce:ef:19:
28 cd:ae:ff:78:6c:7b:c0:12:03:d4:4e:72:0d:50:6d:
29 3b:a3:3b:a3:99:5e:9d:c8:d9:0c:85:b3:d9:8a:d9:
30 54:26:db:6d:fa:ac:bb:ff:25:4c:c4:d1:79:f4:71:
31 d3:86:40:18:13:b0:63:b5:72:4e:30:c4:97:84:86:
32 2d:56:2f:d7:15:f7:7f:c0:ae:f5:fc:5b:e5:fb:a1:
33 ba:d3
21 Exponent: 65537 (0x10001)34 Exponent: 65537 (0x10001)
22 X509v3 extensions:35 X509v3 extensions:
23 X509v3 Subject Key Identifier: 36 X509v3 Subject Key Identifier:
24 5C:F7:29:21:69:7A:09:78:9E:7B:CD:53:42:02:EC:CE:29:0D:11:DF37 33:D8:45:66:D7:68:87:18:7E:54:0D:70:27:91:C7:26:D7:85:65:C0
25 X509v3 Authority Key Identifier: 38 X509v3 Authority Key Identifier:
26 keyid:5C:F7:29:21:69:7A:09:78:9E:7B:CD:53:42:02:EC:CE:29:0D:11:DF39 keyid:33:D8:45:66:D7:68:87:18:7E:54:0D:70:27:91:C7:26:D7:85:65:C0
27 DirName:/C=US/ST=Oregon/L=Portland/O=yaSSL/OU=programming/CN=www.yassl.com/emailAddress=info@yassl.com40 DirName:/C=US/ST=Oregon/L=Portland/O=yaSSL/OU=Programming/CN=www.yassl.com/emailAddress=info@yassl.com
28 serial:C5:D7:6C:11:36:F0:35:E141 serial:87:4A:75:BE:91:66:D8:3D
2942
30 X509v3 Basic Constraints: 43 X509v3 Basic Constraints:
31 CA:TRUE44 CA:TRUE
32 Signature Algorithm: md5WithRSAEncryption45 Signature Algorithm: sha1WithRSAEncryption
33 b4:a5:f1:71:26:4d:b9:ff:54:f3:09:1f:ac:e1:19:59:e5:ec:46 1c:7c:42:81:29:9e:21:cf:d0:d8:c1:54:6f:cc:ae:14:09:38:
34 57:e3:f1:0b:b2:8f:f3:29:eb:6b:c6:fa:27:33:3e:91:d0:77:47 ff:68:98:9a:95:53:76:18:7b:e6:30:76:ec:28:0d:75:a7:de:
35 43:c9:ce:1e:0f:71:07:a9:f7:26:e0:7e:ff:30:7d:52:0a:e1:48 e0:cd:8e:d5:55:23:6a:47:2b:4e:8d:fc:7d:06:a3:d8:0f:ad:
36 80:48:46:bb:99:e9:d9:77:ce:7549 5e:d6:04:c9:00:33:fb:77:27:d3:b5:03:b3:7b:21:74:31:0b:
50 4a:af:2d:1a:b3:93:8e:cc:f3:5f:3d:90:3f:cc:e3:55:19:91:
51 7b:78:24:2e:4a:09:bb:18:4e:61:2d:9c:c6:0a:a0:34:91:88:
52 70:6b:3b:48:47:bc:79:94:a2:a0:4d:32:47:54:c2:a3:dc:2e:
53 d2:51:4c:29:39:11:ff:e2:15:5e:58:97:36:f6:e9:06:06:86:
54 0e:8d:9d:95:03:72:b2:8b:19:7c:e9:14:6e:a1:88:73:68:58:
55 6d:71:5e:c2:d5:d3:13:d2:5f:de:ea:03:be:e2:00:40:e5:ce:
56 fd:e6:92:31:57:c3:eb:bb:66:ac:cb:2f:1a:fa:e0:62:a2:47:
57 f4:93:43:2a:4b:6c:5e:0a:2f:f9:e7:e6:4a:63:86:b0:ac:2a:
58 a1:eb:b4:5b:67:cd:32:e4:b6:11:4b:9a:72:66:0d:a2:4a:76:
59 8f:fe:22:bc:83:fd:db:b7:d5:a9:ee:05:c9:b1:71:7e:1b:2b:
60 e1:e3:af:c0
37-----BEGIN CERTIFICATE-----61-----BEGIN CERTIFICATE-----
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
55-----END CERTIFICATE-----87-----END CERTIFICATE-----
5688
=== modified file 'extra/yassl/certs/client-key.pem'
--- extra/yassl/certs/client-key.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/client-key.pem 2014-03-27 17:18:17 +0000
@@ -1,9 +1,27 @@
1-----BEGIN RSA PRIVATE KEY-----1-----BEGIN RSA PRIVATE KEY-----
2MIIBPAIBAAJBAL1RShT9ahmEDDM4/CcynJcL/KQYYGlO2dh4UAvpIF3WHXAcDCSf2MIIEpAIBAAKCAQEAwwPRK/45pDJFO1PIhCsqfHSavaoqUgdH1qY2sgcyjtC6aXvG
3I4LMOgHVlxeyc2yGz7Xx5c5oDNmiEjl88lMCAwEAAQJAVGHWLlLhpqvXsEEXCvWh3w0Se1IFI/S1oootnu6F1yDYsStIb94u6zw357+zxgR57mwNHmr9lzH9lJGmm6BSJ
4HCYono+K8YVGzhiaPSTU212fCoQryIxsXQKGBjhFdZm96DZWp+Vd/t/u+B4ZeaqY4W+Q098WwFJP1Z3s6enjhAVZWkaYTQo3SPECcTO/Rht83URsMoTv18aNKNeThzpbf
5+QIhAOBEfbFtdZqk5OmbbRsRVPI7+YYmubgY1TVIPqmxHQ4NAiEA2BrTQkjOb3ul5G36/TpfQEOioCDCBryALQxTFdGe0MoJvjYbCiECZNoO6HkByIhfXUmUkc7DO7xnN
6A/SZO04fJUZsm7Ng92FWHDJsRancSd8CIQCmGbQqZBK1TamJZ6dAY+7RViAx/p6Q6rv94bHvAEgPUTnINUG07ozujmV6dyNkMhbPZitlUJttt+qy7/yVMxNF59HHThkAY
7vjuzMeXPUrFdRQIhAMkfBhg9bCqjFyt8PBPOm/vz8+ZgZlE0/JAXeV7IPCVfAiEA7E7BjtXJOMMSXhIYtVi/XFfd/wK71/Fvl+6G60wIDAQABAoIBAQCi5thfEHFkCJ4u
8gZwCFm1ghGxmaoB424YC4DHeDeN/g9xwJHT7EuM9Mvc=8bdFtHoXSCrGMR84sUWqgEp5T3pFMHW3qWXvyd6rZxtmKq9jhFuRjJv+1bBNZuOOl
9yHIXLgyfb+VZP3ZvSbERwlouFikN3reO3EDVou7gHqH0vpfbhmOWFM2YCWAtMHac
10PM3miO5HknkLWgDiXl8RfH35CLcgBokqXf0AqyLh8LO8JKleJg4fAC3+IZpTW23T
11K6uUgmhDNtj2L8Yi/LVBXQ0zYOqkfX7oS1WRVtNcV48flBcvqt7pnqj0z4pMjqDk
12VnOyz0+GxWk88yQgi1yWDPprEjuaZ8HfxpaypdWSDZsJQmgkEEXUUOQXOUjQNYuU
13bRHej8pZAoGBAOokp/lpM+lx3FJ9iCEoL0neunIW6cxHeogNlFeEWBY6gbA/os+m
14bB6wBikAj+d3dqzbysfZXps/JpBSrvw4kAAUu7QPWJTnL2p+HE9BIdQxWR9OihqN
15p1dsItjl9H4yphDLZKVVA4emJwWMw9e2J7JNujDaR49U0z2LhI2UmFilAoGBANU4
16G8OPxZMMRwtvNZLFsI1GyJIYj/WACvfvof6AubUqusoYsF2lB9CTjdicBBzUYo6m
17JoEB/86KKmM0NUCqbYDeiSNqV02ebq2TTlaQC22dc4sMric93k7wqsVseGdslFKc
18N2dsLe+7r9+mkDzER8+Nlp6YqbSfxaZQ3LPw+3QXAoGAXoMJYr26fKK/QnT1fBzS
19ackEDYV+Pj0kEsMYe/Mp818OdmxZdeRBhGmdMvPNIquwNbpKsjzl2Vi2Yk9d3uWe
20CspTsiz3nrNrClt5ZexukU6SIPb8/Bbt03YM4ux/smkTa3gOWkZktF63JaBadTpL
2178c8Pvf9JrggxJkKmnO+wxkCgYEAukSTFKw0GTtfkWCs97TWgQU2UVM96GXcry7c
22YT7Jfbh/h/A7mwOCKTfOck4R1bHBDAegmZFKjX/sec/xObXphexi99p9vGRNIjwO
238tZR9YfYmcARIF0PKf1b4q7ZHNkhVm38hNBf7RAVHBgh58Q9S9fQnmqVzyLJA3ue
2442AB/C8CgYAR0EvPG2e5nxB1R4ZlrjHCxjCsWQZQ2Q+1cAb38NPIYnyo2m72IT/T
25f1/qiqs/2Spe81HSwjA34y2jdQ0eTSE01VdwXIm/cuxKbmjVzRh0M06MOkWP5pZA
2662P5GYY6Ud2JS7Dz+Z9dKJU4vjWrylznk1M0oUVdEzllQkahn831vw==
9-----END RSA PRIVATE KEY-----27-----END RSA PRIVATE KEY-----
1028
=== modified file 'extra/yassl/certs/client-keyEnc.pem'
--- extra/yassl/certs/client-keyEnc.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/client-keyEnc.pem 2014-03-27 17:18:17 +0000
@@ -2,11 +2,29 @@
2Proc-Type: 4,ENCRYPTED2Proc-Type: 4,ENCRYPTED
3DEK-Info: DES-CBC,B9D8FB94E38635AB3DEK-Info: DES-CBC,B9D8FB94E38635AB
44
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
12-----END RSA PRIVATE KEY-----30-----END RSA PRIVATE KEY-----
1331
=== modified file 'extra/yassl/certs/dsa-cert.pem'
--- extra/yassl/certs/dsa-cert.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/dsa-cert.pem 2014-03-27 17:18:17 +0000
@@ -1,70 +1,22 @@
1Certificate:
2 Data:
3 Version: 3 (0x2)
4 Serial Number:
5 ce:df:23:31:64:b4:13:da
6 Signature Algorithm: dsaWithSHA1
7 Issuer: C=US, ST=Oregon, L=Portland, O=yaSSL, OU=testing, CN=www.yassl.com/emailAddress=info@yassl.com
8 Validity
9 Not Before: Jun 30 18:56:38 2010 GMT
10 Not After : Mar 26 18:56:39 2013 GMT
11 Subject: C=US, ST=Oregon, L=Portland, O=yaSSL, OU=testing, CN=www.yassl.com/emailAddress=info@yassl.com
12 Subject Public Key Info:
13 Public Key Algorithm: dsaEncryption
14 DSA Public Key:
15 pub:
16 04:84:a0:26:31:72:0c:e8:4f:5d:53:17:62:b1:80:
17 ca:c0:16:5f:c3:1e:ea:c5:d9:98:38:f9:be:56:53:
18 47:68:ce:08:22:57:1c:bb:0d:77:91:cf:5b:36:ed:
19 f3:24:82:90:8a:cd:90:7c:db:77:f9:17:2d:73:73:
20 ef:bb:b9:82
21 P:
22 00:99:29:69:80:c9:3c:98:68:45:a9:82:fe:67:eb:
23 95:88:c5:b4:0c:d6:26:45:95:19:2c:a0:20:5b:7e:
24 df:69:e9:dc:c3:0f:f3:61:0a:25:9b:f2:21:01:6a:
25 cd:aa:8c:37:e7:ca:66:db:56:f4:0f:7d:7a:d1:18:
26 b9:42:fd:1b:11
27 Q:
28 00:ad:25:29:ab:0a:9f:09:1c:c1:ad:03:20:76:7f:
29 a6:b7:dd:4d:03:09
30 G:
31 12:88:99:da:e7:d0:0b:93:9b:e6:ee:3c:21:7f:9c:
32 b3:b4:8d:a5:8c:e2:37:80:3f:17:d1:81:4f:bd:f0:
33 71:b6:32:08:54:dd:bf:01:e2:b3:77:06:64:75:8a:
34 04:d6:79:39:b1:02:03:03:c6:06:74:e5:90:05:0a:
35 10:46:19:31
36 X509v3 extensions:
37 X509v3 Subject Key Identifier:
38 BE:F9:8C:5D:D6:1C:B4:EE:81:DD:36:56:0A:21:E4:61:44:73:E9:E2
39 X509v3 Authority Key Identifier:
40 keyid:BE:F9:8C:5D:D6:1C:B4:EE:81:DD:36:56:0A:21:E4:61:44:73:E9:E2
41 DirName:/C=US/ST=Oregon/L=Portland/O=yaSSL/OU=testing/CN=www.yassl.com/emailAddress=info@yassl.com
42 serial:CE:DF:23:31:64:B4:13:DA
43
44 X509v3 Basic Constraints:
45 CA:TRUE
46 Signature Algorithm: dsaWithSHA1
47 30:2d:02:14:00:a3:21:20:34:6a:2c:f9:fb:76:d7:20:c9:c0:
48 35:1b:64:9a:c2:83:02:15:00:a4:59:ac:6d:da:85:48:ff:f5:
49 0d:49:72:c8:cd:91:fc:ec:2f:5c:63
50-----BEGIN CERTIFICATE-----1-----BEGIN CERTIFICATE-----
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
70-----END CERTIFICATE-----22-----END CERTIFICATE-----
7123
=== modified file 'extra/yassl/certs/server-cert.pem'
--- extra/yassl/certs/server-cert.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/server-cert.pem 2014-03-27 17:18:17 +0000
@@ -1,39 +1,157 @@
1Certificate:1Certificate:
2 Data:2 Data:
3 Version: 1 (0x0)3 Version: 1 (0x0)
4 Serial Number: 1 (0x1)4 Serial Number: 2 (0x2)
5 Signature Algorithm: md5WithRSAEncryption5 Signature Algorithm: sha1WithRSAEncryption
6 Issuer: C=US, ST=Montana, L=Bozeman, O=sawtooth, OU=consulting, CN=www.sawtooth-consulting.com/emailAddress=info@yassl.com6 Issuer: C=US, ST=Montana, L=Bozeman, O=Sawtooth, OU=Consulting, CN=www.yassl.com/emailAddress=info@yassl.com
7 Validity7 Validity
8 Not Before: Jun 30 18:52:17 2010 GMT8 Not Before: Oct 24 18:27:13 2011 GMT
9 Not After : Mar 26 18:52:17 2013 GMT9 Not After : Jul 20 18:27:13 2014 GMT
10 Subject: C=US, ST=Montana, L=Bozeman, O=yaSSL, OU=support, CN=www.yassl.com/emailAddress=info@yassl.com10 Subject: C=US, ST=Montana, L=Bozeman, O=yaSSL, OU=Support, CN=www.yassl.com/emailAddress=info@yassl.com
11 Subject Public Key Info:11 Subject Public Key Info:
12 Public Key Algorithm: rsaEncryption12 Public Key Algorithm: rsaEncryption
13 RSA Public Key: (512 bit)13 RSA Public Key: (2048 bit)
14 Modulus (512 bit):14 Modulus (2048 bit):
15 00:c6:7b:c0:68:81:2f:de:82:3f:f9:ac:c3:86:4a:15 00:c0:95:08:e1:57:41:f2:71:6d:b7:d2:45:41:27:
16 66:b7:ec:d4:f1:f6:64:21:ff:f5:a2:34:42:d0:38:16 01:65:c6:45:ae:f2:bc:24:30:b8:95:ce:2f:4e:d6:
17 9f:c6:dd:3b:6e:26:65:6a:54:96:dd:d2:7b:eb:36:17 f6:1c:88:bc:7c:9f:fb:a8:67:7f:fe:5c:9c:51:75:
18 a2:ae:7e:2a:9e:7e:56:a5:b6:87:9f:15:c7:18:66:18 f7:8a:ca:07:e7:35:2f:8f:e1:bd:7b:c0:2f:7c:ab:
19 7e:16:77:e2:a719 64:a8:17:fc:ca:5d:7b:ba:e0:21:e5:72:2e:6f:2e:
20 86:d8:95:73:da:ac:1b:53:b9:5f:3f:d7:19:0d:25:
21 4f:e1:63:63:51:8b:0b:64:3f:ad:43:b8:a5:1c:5c:
22 34:b3:ae:00:a0:63:c5:f6:7f:0b:59:68:78:73:a6:
23 8c:18:a9:02:6d:af:c3:19:01:2e:b8:10:e3:c6:cc:
24 40:b4:69:a3:46:33:69:87:6e:c4:bb:17:a6:f3:e8:
25 dd:ad:73:bc:7b:2f:21:b5:fd:66:51:0c:bd:54:b3:
26 e1:6d:5f:1c:bc:23:73:d1:09:03:89:14:d2:10:b9:
27 64:c3:2a:d0:a1:96:4a:bc:e1:d4:1a:5b:c7:a0:c0:
28 c1:63:78:0f:44:37:30:32:96:80:32:23:95:a1:77:
29 ba:13:d2:97:73:e2:5d:25:c9:6a:0d:c3:39:60:a4:
30 b4:b0:69:42:42:09:e9:d8:08:bc:33:20:b3:58:22:
31 a7:aa:eb:c4:e1:e6:61:83:c5:d2:96:df:d9:d0:4f:
32 ad:d7
20 Exponent: 65537 (0x10001)33 Exponent: 65537 (0x10001)
21 Signature Algorithm: md5WithRSAEncryption34 Signature Algorithm: sha1WithRSAEncryption
22 58:a9:98:e7:16:52:4c:40:e7:e1:47:92:19:1b:3a:8f:97:6c:35 71:4e:d3:62:df:cc:4c:f7:cd:b7:6e:52:0b:6c:6e:e0:bd:c2:
23 7b:b7:b0:cb:20:6d:ad:b5:d3:47:58:d8:e4:f2:3e:32:e9:ef:36 2d:07:d7:c0:b0:6e:43:1e:35:bc:30:01:50:f0:ff:99:23:6c:
24 87:77:e5:54:36:f4:8d:50:8d:07:b4:77:45:ea:9d:a4:33:36:37 18:1a:41:b6:11:d6:d4:19:61:fd:e4:77:97:1c:39:e1:57:ab:
25 9b:0b:e0:74:58:11:c5:01:7b:4d38 c5:15:63:77:11:36:5e:74:e2:24:0b:1f:41:78:ad:b7:81:e7:
39 b4:40:66:80:f0:4b:91:a0:6d:a8:6e:3d:53:d9:8b:ce:2a:e1:
40 0b:45:65:87:a1:96:ae:ee:3e:88:d5:12:1f:78:17:ae:2c:c5:
41 73:44:d8:dc:f4:af:d8:cc:ae:4c:e1:0c:be:55:a4:99:f7:6e:
42 96:c0:c8:45:87:bf:dc:51:57:ff:9e:73:37:6a:18:9c:c3:f9:
43 22:7a:f4:b0:52:bd:fc:21:30:f8:c5:ff:1e:87:7d:ad:a2:5a:
44 35:f5:22:a8:b4:0a:76:38:e6:76:b0:98:af:1b:ec:8a:0a:43:
45 74:d2:85:34:37:84:07:e1:f6:23:b2:29:de:a6:b6:b7:4c:57:
46 7e:96:06:cb:a9:16:25:29:3a:03:2d:55:7d:a6:8c:a4:f7:9e:
47 81:c9:95:b6:7c:c1:4a:ce:94:66:0c:ca:88:eb:d2:09:f5:5b:
48 19:58:82:df:27:fd:67:95:78:b7:02:06:d5:a7:61:bd:ef:3a:
49 fc:b2:61:cd
26-----BEGIN CERTIFICATE-----50-----BEGIN CERTIFICATE-----
27MIICFDCCAb4CAQEwDQYJKoZIhvcNAQEEBQAwgZ4xCzAJBgNVBAYTAlVTMRAwDgYD51MIIDkDCCAngCAQIwDQYJKoZIhvcNAQEFBQAwgZAxCzAJBgNVBAYTAlVTMRAwDgYD
28VQQIEwdNb250YW5hMRAwDgYDVQQHEwdCb3plbWFuMREwDwYDVQQKEwhzYXd0b29052VQQIEwdNb250YW5hMRAwDgYDVQQHEwdCb3plbWFuMREwDwYDVQQKEwhTYXd0b290
29aDETMBEGA1UECxMKY29uc3VsdGluZzEkMCIGA1UEAxMbd3d3LnNhd3Rvb3RoLWNv53aDETMBEGA1UECxMKQ29uc3VsdGluZzEWMBQGA1UEAxMNd3d3Lnlhc3NsLmNvbTEd
30bnN1bHRpbmcuY29tMR0wGwYJKoZIhvcNAQkBFg5pbmZvQHlhc3NsLmNvbTAeFw0x54MBsGCSqGSIb3DQEJARYOaW5mb0B5YXNzbC5jb20wHhcNMTExMDI0MTgyNzEzWhcN
31MDA2MzAxODUyMTdaFw0xMzAzMjYxODUyMTdaMIGKMQswCQYDVQQGEwJVUzEQMA4G55MTQwNzIwMTgyNzEzWjCBijELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB01vbnRhbmEx
32A1UECBMHTW9udGFuYTEQMA4GA1UEBxMHQm96ZW1hbjEOMAwGA1UEChMFeWFTU0wx56EDAOBgNVBAcTB0JvemVtYW4xDjAMBgNVBAoTBXlhU1NMMRAwDgYDVQQLEwdTdXBw
33EDAOBgNVBAsTB3N1cHBvcnQxFjAUBgNVBAMTDXd3dy55YXNzbC5jb20xHTAbBgkq57b3J0MRYwFAYDVQQDEw13d3cueWFzc2wuY29tMR0wGwYJKoZIhvcNAQkBFg5pbmZv
34hkiG9w0BCQEWDmluZm9AeWFzc2wuY29tMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJB58QHlhc3NsLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMCVCOFX
35AMZ7wGiBL96CP/msw4ZKZrfs1PH2ZCH/9aI0QtA4n8bdO24mZWpUlt3Se+s2oq5+59QfJxbbfSRUEnAWXGRa7yvCQwuJXOL07W9hyIvHyf+6hnf/5cnFF194rKB+c1L4/h
36Kp5+VqW2h58VxxhmfhZ34qcCAwEAATANBgkqhkiG9w0BAQQFAANBAFipmOcWUkxA60vXvAL3yrZKgX/Mpde7rgIeVyLm8uhtiVc9qsG1O5Xz/XGQ0lT+FjY1GLC2Q/rUO4
375+FHkhkbOo+XbHu3sMsgba2100dY2OTyPjLp74d35VQ29I1QjQe0d0XqnaQzNpsL61pRxcNLOuAKBjxfZ/C1loeHOmjBipAm2vwxkBLrgQ48bMQLRpo0YzaYduxLsXpvPo
384HRYEcUBe00=623a1zvHsvIbX9ZlEMvVSz4W1fHLwjc9EJA4kU0hC5ZMMq0KGWSrzh1Bpbx6DAwWN4
63D0Q3MDKWgDIjlaF3uhPSl3PiXSXJag3DOWCktLBpQkIJ6dgIvDMgs1gip6rrxOHm
64YYPF0pbf2dBPrdcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAcU7TYt/MTPfNt25S
65C2xu4L3CLQfXwLBuQx41vDABUPD/mSNsGBpBthHW1Blh/eR3lxw54VerxRVjdxE2
66XnTiJAsfQXitt4HntEBmgPBLkaBtqG49U9mLzirhC0Vlh6GWru4+iNUSH3gXrizF
67c0TY3PSv2MyuTOEMvlWkmfdulsDIRYe/3FFX/55zN2oYnMP5Inr0sFK9/CEw+MX/
68Hod9raJaNfUiqLQKdjjmdrCYrxvsigpDdNKFNDeEB+H2I7Ip3qa2t0xXfpYGy6kW
69JSk6Ay1VfaaMpPeegcmVtnzBSs6UZgzKiOvSCfVbGViC3yf9Z5V4twIG1adhve86
70/LJhzQ==
39-----END CERTIFICATE-----71-----END CERTIFICATE-----
72Certificate:
73 Data:
74 Version: 3 (0x2)
75 Serial Number:
76 e9:d0:a7:5f:79:25:f4:3c
77 Signature Algorithm: sha1WithRSAEncryption
78 Issuer: C=US, ST=Montana, L=Bozeman, O=Sawtooth, OU=Consulting, CN=www.yassl.com/emailAddress=info@yassl.com
79 Validity
80 Not Before: Oct 24 18:18:15 2011 GMT
81 Not After : Jul 20 18:18:15 2014 GMT
82 Subject: C=US, ST=Montana, L=Bozeman, O=Sawtooth, OU=Consulting, CN=www.yassl.com/emailAddress=info@yassl.com
83 Subject Public Key Info:
84 Public Key Algorithm: rsaEncryption
85 RSA Public Key: (2048 bit)
86 Modulus (2048 bit):
87 00:bf:0c:ca:2d:14:b2:1e:84:42:5b:cd:38:1f:4a:
88 f2:4d:75:10:f1:b6:35:9f:df:ca:7d:03:98:d3:ac:
89 de:03:66:ee:2a:f1:d8:b0:7d:6e:07:54:0b:10:98:
90 21:4d:80:cb:12:20:e7:cc:4f:de:45:7d:c9:72:77:
91 32:ea:ca:90:bb:69:52:10:03:2f:a8:f3:95:c5:f1:
92 8b:62:56:1b:ef:67:6f:a4:10:41:95:ad:0a:9b:e3:
93 a5:c0:b0:d2:70:76:50:30:5b:a8:e8:08:2c:7c:ed:
94 a7:a2:7a:8d:38:29:1c:ac:c7:ed:f2:7c:95:b0:95:
95 82:7d:49:5c:38:cd:77:25:ef:bd:80:75:53:94:3c:
96 3d:ca:63:5b:9f:15:b5:d3:1d:13:2f:19:d1:3c:db:
97 76:3a:cc:b8:7d:c9:e5:c2:d7:da:40:6f:d8:21:dc:
98 73:1b:42:2d:53:9c:fe:1a:fc:7d:ab:7a:36:3f:98:
99 de:84:7c:05:67:ce:6a:14:38:87:a9:f1:8c:b5:68:
100 cb:68:7f:71:20:2b:f5:a0:63:f5:56:2f:a3:26:d2:
101 b7:6f:b1:5a:17:d7:38:99:08:fe:93:58:6f:fe:c3:
102 13:49:08:16:0b:a7:4d:67:00:52:31:67:23:4e:98:
103 ed:51:45:1d:b9:04:d9:0b:ec:d8:28:b3:4b:bd:ed:
104 36:79
105 Exponent: 65537 (0x10001)
106 X509v3 extensions:
107 X509v3 Subject Key Identifier:
108 27:8E:67:11:74:C3:26:1D:3F:ED:33:63:B3:A4:D8:1D:30:E5:E8:D5
109 X509v3 Authority Key Identifier:
110 keyid:27:8E:67:11:74:C3:26:1D:3F:ED:33:63:B3:A4:D8:1D:30:E5:E8:D5
111 DirName:/C=US/ST=Montana/L=Bozeman/O=Sawtooth/OU=Consulting/CN=www.yassl.com/emailAddress=info@yassl.com
112 serial:E9:D0:A7:5F:79:25:F4:3C
113
114 X509v3 Basic Constraints:
115 CA:TRUE
116 Signature Algorithm: sha1WithRSAEncryption
117 5f:86:14:f4:51:8b:bc:a5:4e:30:da:5e:ac:9a:f8:6c:d9:26:
118 4b:93:f9:e3:1c:89:6f:9e:ee:b3:9d:77:3e:89:20:76:a3:e6:
119 e8:86:15:21:db:e2:33:b2:34:d5:d0:9f:f3:c1:a4:87:92:5c:
120 f9:d1:ff:30:2f:8e:03:bc:b3:3c:0c:32:a3:90:5f:1a:90:1e:
121 af:9d:f3:9e:d7:07:02:a9:7d:27:66:63:2f:af:18:d7:ac:18:
122 98:8c:83:8f:38:f3:0b:ac:36:10:75:fb:ca:76:13:50:5b:02:
123 8f:73:bf:e3:a0:ee:83:52:25:54:ce:26:ce:9c:bd:2f:79:ab:
124 1b:60:b8:92:f1:03:c0:fc:3b:08:d9:c0:ad:d5:72:08:25:80:
125 61:2d:dc:9f:a7:83:62:07:47:e0:07:4c:4b:07:30:04:a9:87:
126 1c:55:7f:07:12:d0:cb:42:5d:cb:cf:66:01:1a:17:ee:f9:0f:
127 60:b7:db:6f:68:e5:4e:41:62:6e:d3:6f:60:4f:4b:27:de:cf:
128 18:07:f1:13:5d:cb:3f:a9:25:44:da:52:5c:c8:04:e1:56:12:
129 f5:2a:90:4e:d1:e2:af:01:b5:23:a1:ec:31:da:7b:63:69:c4:
130 b8:f3:e7:ce:a1:3d:c0:db:6d:f3:b2:d9:46:c8:9f:c3:b8:70:
131 5a:1f:7f:ca
132-----BEGIN CERTIFICATE-----
133MIIEnjCCA4agAwIBAgIJAOnQp195JfQ8MA0GCSqGSIb3DQEBBQUAMIGQMQswCQYD
134VQQGEwJVUzEQMA4GA1UECBMHTW9udGFuYTEQMA4GA1UEBxMHQm96ZW1hbjERMA8G
135A1UEChMIU2F3dG9vdGgxEzARBgNVBAsTCkNvbnN1bHRpbmcxFjAUBgNVBAMTDXd3
136dy55YXNzbC5jb20xHTAbBgkqhkiG9w0BCQEWDmluZm9AeWFzc2wuY29tMB4XDTEx
137MTAyNDE4MTgxNVoXDTE0MDcyMDE4MTgxNVowgZAxCzAJBgNVBAYTAlVTMRAwDgYD
138VQQIEwdNb250YW5hMRAwDgYDVQQHEwdCb3plbWFuMREwDwYDVQQKEwhTYXd0b290
139aDETMBEGA1UECxMKQ29uc3VsdGluZzEWMBQGA1UEAxMNd3d3Lnlhc3NsLmNvbTEd
140MBsGCSqGSIb3DQEJARYOaW5mb0B5YXNzbC5jb20wggEiMA0GCSqGSIb3DQEBAQUA
141A4IBDwAwggEKAoIBAQC/DMotFLIehEJbzTgfSvJNdRDxtjWf38p9A5jTrN4DZu4q
1428diwfW4HVAsQmCFNgMsSIOfMT95FfclydzLqypC7aVIQAy+o85XF8YtiVhvvZ2+k
143EEGVrQqb46XAsNJwdlAwW6joCCx87aeieo04KRysx+3yfJWwlYJ9SVw4zXcl772A
144dVOUPD3KY1ufFbXTHRMvGdE823Y6zLh9yeXC19pAb9gh3HMbQi1TnP4a/H2rejY/
145mN6EfAVnzmoUOIep8Yy1aMtof3EgK/WgY/VWL6Mm0rdvsVoX1ziZCP6TWG/+wxNJ
146CBYLp01nAFIxZyNOmO1RRR25BNkL7Ngos0u97TZ5AgMBAAGjgfgwgfUwHQYDVR0O
147BBYEFCeOZxF0wyYdP+0zY7Ok2B0w5ejVMIHFBgNVHSMEgb0wgbqAFCeOZxF0wyYd
148P+0zY7Ok2B0w5ejVoYGWpIGTMIGQMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHTW9u
149dGFuYTEQMA4GA1UEBxMHQm96ZW1hbjERMA8GA1UEChMIU2F3dG9vdGgxEzARBgNV
150BAsTCkNvbnN1bHRpbmcxFjAUBgNVBAMTDXd3dy55YXNzbC5jb20xHTAbBgkqhkiG
1519w0BCQEWDmluZm9AeWFzc2wuY29tggkA6dCnX3kl9DwwDAYDVR0TBAUwAwEB/zAN
152BgkqhkiG9w0BAQUFAAOCAQEAX4YU9FGLvKVOMNperJr4bNkmS5P54xyJb57us513
153PokgdqPm6IYVIdviM7I01dCf88Gkh5Jc+dH/MC+OA7yzPAwyo5BfGpAer53zntcH
154Aql9J2ZjL68Y16wYmIyDjzjzC6w2EHX7ynYTUFsCj3O/46Dug1IlVM4mzpy9L3mr
155G2C4kvEDwPw7CNnArdVyCCWAYS3cn6eDYgdH4AdMSwcwBKmHHFV/BxLQy0Jdy89m
156ARoX7vkPYLfbb2jlTkFibtNvYE9LJ97PGAfxE13LP6klRNpSXMgE4VYS9SqQTtHi
157rwG1I6HsMdp7Y2nEuPPnzqE9wNtt87LZRsifw7hwWh9/yg==
40158
=== modified file 'extra/yassl/certs/server-key.pem'
--- extra/yassl/certs/server-key.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/server-key.pem 2014-03-27 17:18:17 +0000
@@ -1,9 +1,27 @@
1-----BEGIN RSA PRIVATE KEY-----1-----BEGIN RSA PRIVATE KEY-----
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
9-----END RSA PRIVATE KEY-----27-----END RSA PRIVATE KEY-----
1028
=== modified file 'extra/yassl/certs/server-keyEnc.pem'
--- extra/yassl/certs/server-keyEnc.pem 2012-02-10 14:33:27 +0000
+++ extra/yassl/certs/server-keyEnc.pem 2014-03-27 17:18:17 +0000
@@ -2,11 +2,29 @@
2Proc-Type: 4,ENCRYPTED2Proc-Type: 4,ENCRYPTED
3DEK-Info: DES-CBC,08132C1FFF5BC8CC3DEK-Info: DES-CBC,08132C1FFF5BC8CC
44
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
12-----END RSA PRIVATE KEY-----30-----END RSA PRIVATE KEY-----
1331
=== modified file 'extra/yassl/include/cert_wrapper.hpp'
--- extra/yassl/include/cert_wrapper.hpp 2013-02-26 05:35:17 +0000
+++ extra/yassl/include/cert_wrapper.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,5 @@
1/*1/*
2 Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.2 Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
33
4 This program is free software; you can redistribute it and/or modify4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by5 it under the terms of the GNU General Public License as published by
@@ -88,6 +88,7 @@
88 bool verifyNone_; // no error if verify fails88 bool verifyNone_; // no error if verify fails
89 bool failNoCert_;89 bool failNoCert_;
90 bool sendVerify_;90 bool sendVerify_;
91 bool sendBlankCert_;
91 VerifyCallback verifyCallback_; // user verify callback92 VerifyCallback verifyCallback_; // user verify callback
92public:93public:
93 CertManager();94 CertManager();
@@ -114,16 +115,18 @@
114 bool verifyNone() const;115 bool verifyNone() const;
115 bool failNoCert() const;116 bool failNoCert() const;
116 bool sendVerify() const;117 bool sendVerify() const;
118 bool sendBlankCert() const;
117119
118 void setVerifyPeer();120 void setVerifyPeer();
119 void setVerifyNone();121 void setVerifyNone();
120 void setFailNoCert();122 void setFailNoCert();
121 void setSendVerify();123 void setSendVerify();
124 void setSendBlankCert();
122 void setPeerX509(X509*);125 void setPeerX509(X509*);
123 void setVerifyCallback(VerifyCallback);126 void setVerifyCallback(VerifyCallback);
124private:127private:
125 CertManager(const CertManager&); // hide copy128 CertManager(const CertManager&); // hide copy
126 CertManager& operator=(const CertManager&); // and assign129 CertManager& operator=(const CertManager&); // and assigin
127};130};
128131
129132
130133
=== modified file 'extra/yassl/include/crypto_wrapper.hpp'
--- extra/yassl/include/crypto_wrapper.hpp 2007-03-23 12:43:09 +0000
+++ extra/yassl/include/crypto_wrapper.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/factory.hpp'
--- extra/yassl/include/factory.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/include/factory.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/handshake.hpp'
--- extra/yassl/include/handshake.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/include/handshake.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/log.hpp'
--- extra/yassl/include/log.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/include/log.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/crypto.h'
--- extra/yassl/include/openssl/crypto.h 2010-12-28 23:47:05 +0000
+++ extra/yassl/include/openssl/crypto.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2005, 2007 MySQL AB2 Copyright (C) 2005, 2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/des.h'
--- extra/yassl/include/openssl/des.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/des.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2005 MySQL AB2 Copyright (C) 2005 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/des_old.h'
--- extra/yassl/include/openssl/des_old.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/des_old.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2007 MySQL AB2 Copyright (C) 2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/engine.h'
--- extra/yassl/include/openssl/engine.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/engine.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2006 MySQL AB2 Copyright (C) 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/err.h'
--- extra/yassl/include/openssl/err.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/err.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2005, 2006 MySQL AB2 Copyright (C) 2005, 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/evp.h'
--- extra/yassl/include/openssl/evp.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/evp.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2007 MySQL AB2 Copyright (C) 2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/generate_prefix_files.pl'
--- extra/yassl/include/openssl/generate_prefix_files.pl 2013-03-20 16:52:15 +0000
+++ extra/yassl/include/openssl/generate_prefix_files.pl 2014-03-27 17:18:17 +0000
@@ -1,6 +1,7 @@
1#!/usr/bin/perl1#!/usr/bin/perl
22
3# Copyright (C) 2006 MySQL AB3# Copyright (C) 2006 MySQL AB
4# Use is subject to license terms
4# 5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
78
=== modified file 'extra/yassl/include/openssl/hmac.h'
--- extra/yassl/include/openssl/hmac.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/hmac.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2007 MySQL AB2 Copyright (C) 2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/lhash.h'
--- extra/yassl/include/openssl/lhash.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/lhash.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2005 MySQL AB2 Copyright (C) 2005 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/md4.h'
--- extra/yassl/include/openssl/md4.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/md4.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2006 MySQL AB2 Copyright (C) 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/md5.h'
--- extra/yassl/include/openssl/md5.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/md5.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2005, 2006 MySQL AB2 Copyright (C) 2005, 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/objects.h'
--- extra/yassl/include/openssl/objects.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/objects.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2007 MySQL AB2 Copyright (C) 2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/opensslv.h'
--- extra/yassl/include/openssl/opensslv.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/opensslv.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2005 MySQL AB2 Copyright (C) 2005 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/pem.h'
--- extra/yassl/include/openssl/pem.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/pem.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2006 MySQL AB2 Copyright (C) 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/pkcs12.h'
--- extra/yassl/include/openssl/pkcs12.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/pkcs12.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2006 MySQL AB2 Copyright (C) 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/prefix_crypto.h'
--- extra/yassl/include/openssl/prefix_crypto.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/prefix_crypto.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2006 MySQL AB2 Copyright (C) 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/rand.h'
--- extra/yassl/include/openssl/rand.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/rand.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2005 MySQL AB2 Copyright (C) 2005 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/rsa.h'
--- extra/yassl/include/openssl/rsa.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/rsa.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2005, 2006 MySQL AB2 Copyright (C) 2005, 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/sha.h'
--- extra/yassl/include/openssl/sha.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/sha.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2007 MySQL AB2 Copyright (C) 2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/ssl.h'
--- extra/yassl/include/openssl/ssl.h 2012-11-21 13:44:15 +0000
+++ extra/yassl/include/openssl/ssl.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,5 @@
1/*1/*
2 Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.2 Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
3 Use is subject to license terms.3 Use is subject to license terms.
44
5 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
@@ -35,7 +35,7 @@
35#include "rsa.h"35#include "rsa.h"
3636
3737
38#define YASSL_VERSION "2.2.2"38#define YASSL_VERSION "2.3.0"
3939
4040
41#if defined(__cplusplus)41#if defined(__cplusplus)
4242
=== modified file 'extra/yassl/include/openssl/x509.h'
--- extra/yassl/include/openssl/x509.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/x509.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2006 MySQL AB2 Copyright (C) 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/openssl/x509v3.h'
--- extra/yassl/include/openssl/x509v3.h 2010-12-28 18:57:23 +0000
+++ extra/yassl/include/openssl/x509v3.h 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2006 MySQL AB2 Copyright (C) 2006 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/timer.hpp'
--- extra/yassl/include/timer.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/include/timer.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/include/yassl.hpp'
--- extra/yassl/include/yassl.hpp 2007-03-28 16:47:51 +0000
+++ extra/yassl/include/yassl.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/src/cert_wrapper.cpp'
--- extra/yassl/src/cert_wrapper.cpp 2013-02-26 05:35:17 +0000
+++ extra/yassl/src/cert_wrapper.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,5 @@
1/*1/*
2 Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.2 Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
33
4 This program is free software; you can redistribute it and/or modify4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by5 it under the terms of the GNU General Public License as published by
@@ -91,7 +91,7 @@
91//CertManager91//CertManager
92CertManager::CertManager()92CertManager::CertManager()
93 : peerX509_(0), verifyPeer_(false), verifyNone_(false), failNoCert_(false),93 : peerX509_(0), verifyPeer_(false), verifyNone_(false), failNoCert_(false),
94 sendVerify_(false), verifyCallback_(0)94 sendVerify_(false), sendBlankCert_(false), verifyCallback_(0)
95{}95{}
9696
9797
@@ -142,6 +142,11 @@
142 verifyNone_ = true;142 verifyNone_ = true;
143}143}
144144
145bool CertManager::sendBlankCert() const
146{
147 return sendBlankCert_;
148}
149
145150
146void CertManager::setFailNoCert()151void CertManager::setFailNoCert()
147{152{
@@ -154,6 +159,11 @@
154 sendVerify_ = true;159 sendVerify_ = true;
155}160}
156161
162void CertManager::setSendBlankCert()
163{
164 sendBlankCert_ = true;
165}
166
157167
158void CertManager::setVerifyCallback(VerifyCallback vc)168void CertManager::setVerifyCallback(VerifyCallback vc)
159{169{
160170
=== modified file 'extra/yassl/src/crypto_wrapper.cpp'
--- extra/yassl/src/crypto_wrapper.cpp 2013-02-26 05:35:17 +0000
+++ extra/yassl/src/crypto_wrapper.cpp 2014-03-27 17:18:17 +0000
@@ -953,9 +953,9 @@
953 info->set = true;953 info->set = true;
954 }954 }
955 }955 }
956 // get blank line
957 if (fgets(line, sizeof(line), file))
958 begin = ftell(file);956 begin = ftell(file);
957 if (fgets(line,sizeof(line), file)) // get blank line
958 begin = ftell(file);
959 }959 }
960 960
961 }961 }
962962
=== modified file 'extra/yassl/src/handshake.cpp'
--- extra/yassl/src/handshake.cpp 2014-01-06 05:22:35 +0000
+++ extra/yassl/src/handshake.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,5 @@
1/*1/*
2 Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.2 Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
33
4 This program is free software; you can redistribute it and/or modify4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by5 it under the terms of the GNU General Public License as published by
@@ -1159,6 +1159,8 @@
1159{1159{
1160 if (ssl.GetError()) return;1160 if (ssl.GetError()) return;
11611161
1162 if(ssl.getCrypto().get_certManager().sendBlankCert()) return;
1163
1162 CertificateVerify verify;1164 CertificateVerify verify;
1163 verify.Build(ssl);1165 verify.Build(ssl);
1164 RecordLayerHeader rlHeader;1166 RecordLayerHeader rlHeader;
11651167
=== modified file 'extra/yassl/src/log.cpp'
--- extra/yassl/src/log.cpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/src/log.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/src/timer.cpp'
--- extra/yassl/src/timer.cpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/src/timer.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/src/yassl_imp.cpp'
--- extra/yassl/src/yassl_imp.cpp 2014-01-06 05:22:35 +0000
+++ extra/yassl/src/yassl_imp.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,5 @@
1/*1/*
2 Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.2 Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
33
4 This program is free software; you can redistribute it and/or modify4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by5 it under the terms of the GNU General Public License as published by
@@ -1199,22 +1199,38 @@
11991199
1200Certificate::Certificate(const x509* cert) : cert_(cert) 1200Certificate::Certificate(const x509* cert) : cert_(cert)
1201{1201{
1202 set_length(cert_->get_length() + 2 * CERT_HEADER); // list and cert size1202 if (cert)
1203 set_length(cert_->get_length() + 2 * CERT_HEADER); // list and cert size
1204 else
1205 set_length(CERT_HEADER); // total blank cert size, just list header
1203}1206}
12041207
12051208
1206const opaque* Certificate::get_buffer() const1209const opaque* Certificate::get_buffer() const
1207{1210{
1208 return cert_->get_buffer(); 1211 if (cert_)
1212 return cert_->get_buffer();
1213
1214 return NULL;
1209}1215}
12101216
12111217
1212// output operator for Certificate1218// output operator for Certificate
1213output_buffer& operator<<(output_buffer& output, const Certificate& cert)1219output_buffer& operator<<(output_buffer& output, const Certificate& cert)
1214{1220{
1215 uint sz = cert.get_length() - 2 * CERT_HEADER;1221 uint sz = cert.get_length();
1216 opaque tmp[CERT_HEADER];1222 opaque tmp[CERT_HEADER];
12171223
1224 if ((int)sz > CERT_HEADER)
1225 sz -= 2 * CERT_HEADER; // actual cert, not including headers
1226 else {
1227 sz = 0; // blank cert case
1228 c32to24(sz, tmp);
1229 output.write(tmp, CERT_HEADER);
1230
1231 return output;
1232 }
1233
1218 c32to24(sz + CERT_HEADER, tmp);1234 c32to24(sz + CERT_HEADER, tmp);
1219 output.write(tmp, CERT_HEADER);1235 output.write(tmp, CERT_HEADER);
1220 c32to24(sz, tmp);1236 c32to24(sz, tmp);
@@ -1264,9 +1280,11 @@
1264 ssl.SetError(YasslError(bad_input));1280 ssl.SetError(YasslError(bad_input));
1265 return;1281 return;
1266 }1282 }
1267 x509* myCert;1283 if (cert_sz) {
1268 cm.AddPeerCert(myCert = NEW_YS x509(cert_sz));1284 x509* myCert;
1269 input.read(myCert->use_buffer(), myCert->get_length());1285 cm.AddPeerCert(myCert = NEW_YS x509(cert_sz));
1286 input.read(myCert->use_buffer(), myCert->get_length());
1287 }
12701288
1271 list_sz -= cert_sz + CERT_HEADER;1289 list_sz -= cert_sz + CERT_HEADER;
1272 }1290 }
@@ -1969,9 +1987,9 @@
1969{1987{
1970 CertManager& cm = ssl.useCrypto().use_certManager();1988 CertManager& cm = ssl.useCrypto().use_certManager();
19711989
1972 // make sure user provided cert and key before sending and using1990 cm.setSendVerify();
1973 if (cm.get_cert() && cm.get_privateKey())1991 if (cm.get_cert() == NULL || cm.get_privateKey() == NULL)
1974 cm.setSendVerify();1992 cm.setSendBlankCert(); // send blank cert, OpenSSL requires now
1975}1993}
19761994
19771995
19781996
=== modified file 'extra/yassl/taocrypt/include/algebra.hpp'
--- extra/yassl/taocrypt/include/algebra.hpp 2007-03-23 12:43:09 +0000
+++ extra/yassl/taocrypt/include/algebra.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/arc4.hpp'
--- extra/yassl/taocrypt/include/arc4.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/arc4.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/coding.hpp'
--- extra/yassl/taocrypt/include/coding.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/coding.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/dh.hpp'
--- extra/yassl/taocrypt/include/dh.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/dh.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/dsa.hpp'
--- extra/yassl/taocrypt/include/dsa.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/dsa.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/error.hpp'
--- extra/yassl/taocrypt/include/error.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/error.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/hmac.hpp'
--- extra/yassl/taocrypt/include/hmac.hpp 2007-03-23 12:43:09 +0000
+++ extra/yassl/taocrypt/include/hmac.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/integer.hpp'
--- extra/yassl/taocrypt/include/integer.hpp 2013-02-25 14:26:00 +0000
+++ extra/yassl/taocrypt/include/integer.hpp 2014-03-27 17:18:17 +0000
@@ -46,6 +46,14 @@
4646
4747
48#ifdef TAOCRYPT_X86ASM_AVAILABLE48#ifdef TAOCRYPT_X86ASM_AVAILABLE
49 #if defined(__GNUC__) && (__GNUC__ >= 4)
50 // GCC 4 or greater optimizes too much inline on recursive for bigint,
51 // -O3 just as fast without asm here anyway
52 #undef TAOCRYPT_X86ASM_AVAILABLE
53 #endif
54#endif
55
56#ifdef TAOCRYPT_X86ASM_AVAILABLE
4957
50#ifdef _M_IX8658#ifdef _M_IX86
51 #if (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 500)) || \59 #if (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 500)) || \
5260
=== modified file 'extra/yassl/taocrypt/include/md2.hpp'
--- extra/yassl/taocrypt/include/md2.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/md2.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/md4.hpp'
--- extra/yassl/taocrypt/include/md4.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/md4.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/md5.hpp'
--- extra/yassl/taocrypt/include/md5.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/md5.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/misc.hpp'
--- extra/yassl/taocrypt/include/misc.hpp 2013-02-26 05:35:17 +0000
+++ extra/yassl/taocrypt/include/misc.hpp 2014-03-27 17:18:17 +0000
@@ -124,15 +124,22 @@
124124
125125
126// no gas on these systems ?, disable for now126// no gas on these systems ?, disable for now
127#if defined(__sun__) || defined (__APPLE__)127#if defined(__sun__)
128 #undef TAOCRYPT_DISABLE_X86ASM
128 #define TAOCRYPT_DISABLE_X86ASM129 #define TAOCRYPT_DISABLE_X86ASM
129#endif130#endif
130131
131// icc problem with -03 and integer, disable for now132// icc problem with -03 and integer, disable for now
132#if defined(__INTEL_COMPILER)133#if defined(__INTEL_COMPILER)
134 #undef TAOCRYPT_DISABLE_X86ASM
133 #define TAOCRYPT_DISABLE_X86ASM135 #define TAOCRYPT_DISABLE_X86ASM
134#endif136#endif
135137
138// indpedent of build system, unless ia32 asm is enabled disable it
139#if !defined(TAOCRYPT_ENABLE_X86ASM)
140 #undef TAOCRYPT_DISABLE_X86ASM
141 #define TAOCRYPT_DISABLE_X86ASM
142#endif
136143
137// Turn on ia32 ASM for Big Integer144// Turn on ia32 ASM for Big Integer
138// CodeWarrior defines _MSC_VER145// CodeWarrior defines _MSC_VER
139146
=== modified file 'extra/yassl/taocrypt/include/modarith.hpp'
--- extra/yassl/taocrypt/include/modarith.hpp 2007-03-23 12:43:09 +0000
+++ extra/yassl/taocrypt/include/modarith.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/random.hpp'
--- extra/yassl/taocrypt/include/random.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/random.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/ripemd.hpp'
--- extra/yassl/taocrypt/include/ripemd.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/ripemd.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/sha.hpp'
--- extra/yassl/taocrypt/include/sha.hpp 2007-03-23 10:52:25 +0000
+++ extra/yassl/taocrypt/include/sha.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/twofish.hpp'
--- extra/yassl/taocrypt/include/twofish.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/include/twofish.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/include/type_traits.hpp'
--- extra/yassl/taocrypt/include/type_traits.hpp 2007-03-23 12:43:09 +0000
+++ extra/yassl/taocrypt/include/type_traits.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/mySTL/algorithm.hpp'
--- extra/yassl/taocrypt/mySTL/algorithm.hpp 2007-03-28 16:47:51 +0000
+++ extra/yassl/taocrypt/mySTL/algorithm.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/mySTL/helpers.hpp'
--- extra/yassl/taocrypt/mySTL/helpers.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/mySTL/helpers.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/mySTL/list.hpp'
--- extra/yassl/taocrypt/mySTL/list.hpp 2007-03-23 12:43:09 +0000
+++ extra/yassl/taocrypt/mySTL/list.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/mySTL/memory.hpp'
--- extra/yassl/taocrypt/mySTL/memory.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/mySTL/memory.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/mySTL/memory_array.hpp'
--- extra/yassl/taocrypt/mySTL/memory_array.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/mySTL/memory_array.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/mySTL/pair.hpp'
--- extra/yassl/taocrypt/mySTL/pair.hpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/mySTL/pair.hpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/src/aes.cpp'
--- extra/yassl/taocrypt/src/aes.cpp 2013-02-26 05:35:17 +0000
+++ extra/yassl/taocrypt/src/aes.cpp 2014-03-27 17:18:17 +0000
@@ -52,7 +52,7 @@
52 in += BLOCK_SIZE;52 in += BLOCK_SIZE;
53 }53 }
54 else if (mode_ == CBC) {54 else if (mode_ == CBC) {
55 if (dir_ == ENCRYPTION)55 if (dir_ == ENCRYPTION) {
56 while (blocks--) {56 while (blocks--) {
57 r_[0] ^= *(word32*)in;57 r_[0] ^= *(word32*)in;
58 r_[1] ^= *(word32*)(in + 4);58 r_[1] ^= *(word32*)(in + 4);
@@ -65,7 +65,8 @@
65 out += BLOCK_SIZE;65 out += BLOCK_SIZE;
66 in += BLOCK_SIZE;66 in += BLOCK_SIZE;
67 }67 }
68 else68 }
69 else {
69 while (blocks--) {70 while (blocks--) {
70 AsmDecrypt(in, out, (void*)Td0);71 AsmDecrypt(in, out, (void*)Td0);
71 72
@@ -78,6 +79,7 @@
78 out += BLOCK_SIZE;79 out += BLOCK_SIZE;
79 in += BLOCK_SIZE;80 in += BLOCK_SIZE;
80 }81 }
82 }
81 }83 }
82}84}
8385
@@ -452,27 +454,31 @@
452454
453#if defined(DO_AES_ASM)455#if defined(DO_AES_ASM)
454 #ifdef __GNUC__456 #ifdef __GNUC__
455 #define AS1(x) asm(#x);457 #define AS1(x) #x ";"
456 #define AS2(x, y) asm(#x ", " #y);458 #define AS2(x, y) #x ", " #y ";"
457459
458 #define PROLOG() \460 #define PROLOG() \
459 asm(".intel_syntax noprefix"); \461 __asm__ __volatile__ \
460 AS2( movd mm3, edi ) \462 ( \
461 AS2( movd mm4, ebx ) \463 ".intel_syntax noprefix;" \
462 AS2( sub esp, 4 ) \464 "push ebx;" \
463 AS2( movd mm7, ebp ) \465 "push ebp;" \
464 AS2( mov [ebp - 4], esi ) \466 "movd mm7, ebp;" \
465 AS2( mov ecx, DWORD PTR [ebp + 8] ) \467 "movd mm4, eax;" \
466 AS2( mov esi, DWORD PTR [ebp + 12] ) \468 "mov ebp, edx;" \
467 AS2( mov ebp, DWORD PTR [ebp + 20] )469 "sub esp, 4;"
468470
469 #define EPILOG() \471 #define EPILOG() \
470 AS2( mov esi, [ebp - 4] ) \472 "add esp, 4;" \
471 AS2( mov esp, ebp ) \473 "pop ebp;" \
472 AS2( movd ebx, mm4 ) \474 "pop ebx;" \
473 AS2( movd edi, mm3 ) \475 "emms;" \
474 AS1( emms ) \476 ".att_syntax;" \
475 asm(".att_syntax");477 : \
478 : "c" (this), "S" (inBlock), "d" (boxes), "a" (outBlock) \
479 : "%edi", "memory", "cc" \
480 );
481
476 #else482 #else
477 #define AS1(x) __asm x483 #define AS1(x) __asm x
478 #define AS2(x, y) __asm x, y484 #define AS2(x, y) __asm x, y
@@ -504,6 +510,8 @@
504510
505#ifdef _MSC_VER511#ifdef _MSC_VER
506 __declspec(naked) 512 __declspec(naked)
513#else
514 __attribute__ ((noinline))
507#endif515#endif
508void AES::AsmEncrypt(const byte* inBlock, byte* outBlock, void* boxes) const516void AES::AsmEncrypt(const byte* inBlock, byte* outBlock, void* boxes) const
509{517{
@@ -537,7 +545,11 @@
537 AS2( xor ecx, DWORD PTR [edi + 8] ) // s2545 AS2( xor ecx, DWORD PTR [edi + 8] ) // s2
538 AS2( xor edx, DWORD PTR [edi + 12] ) // s3546 AS2( xor edx, DWORD PTR [edi + 12] ) // s3
539547
540 AS1(loop1: )548#ifdef _MSC_VER
549 AS1( loop1: ) // loop1
550#else
551 AS1(1: ) // loop1
552#endif
541 /* Put0 (mm0) = 553 /* Put0 (mm0) =
542 Te0[get0,rs 24] ^554 Te0[get0,rs 24] ^
543 Te1[get1,rs 16] ^555 Te1[get1,rs 16] ^
@@ -652,7 +664,11 @@
652 AS1( dec edi )664 AS1( dec edi )
653 AS2( movd mm5, edi )665 AS2( movd mm5, edi )
654666
655 AS1( jnz loop1 )667#ifdef _MSC_VER
668 AS1( jnz loop1) // loop1
669#else
670 AS1( jnz 1b ) // loop1
671#endif
656672
657 // last round673 // last round
658 /*674 /*
@@ -799,9 +815,9 @@
799815
800 // store816 // store
801 #ifdef __GNUC__817 #ifdef __GNUC__
802 AS2( mov esi, DWORD PTR [ebp + 16] ) // outBlock818 AS2( movd esi, mm4 ) // outBlock
803 #else819 #else
804 AS2( mov esi, DWORD PTR [ebp + 12] ) // outBlock820 AS2( mov esi, DWORD PTR [ebp + 12] ) // outBlock
805 #endif821 #endif
806822
807 AS1( bswap ecx )823 AS1( bswap ecx )
@@ -818,7 +834,9 @@
818834
819835
820#ifdef _MSC_VER836#ifdef _MSC_VER
821 __declspec(naked) 837 __declspec(naked)
838#else
839 __attribute__ ((noinline))
822#endif840#endif
823void AES::AsmDecrypt(const byte* inBlock, byte* outBlock, void* boxes) const841void AES::AsmDecrypt(const byte* inBlock, byte* outBlock, void* boxes) const
824{842{
@@ -853,7 +871,11 @@
853 AS2( xor edx, DWORD PTR [edi + 12] ) // s3871 AS2( xor edx, DWORD PTR [edi + 12] ) // s3
854872
855873
856 AS1(loop2: )874#ifdef _MSC_VER
875 AS1( loop2: ) // loop2
876#else
877 AS1(2: ) // loop2
878#endif
857 /* Put0 (mm0) =879 /* Put0 (mm0) =
858 Td0[GETBYTE(get0, rs24)] ^880 Td0[GETBYTE(get0, rs24)] ^
859 Td1[GETBYTE(get3, rs16)] ^881 Td1[GETBYTE(get3, rs16)] ^
@@ -964,7 +986,11 @@
964 AS1( dec edi )986 AS1( dec edi )
965 AS2( movd mm5, edi )987 AS2( movd mm5, edi )
966988
967 AS1( jnz loop2 )989#ifdef _MSC_VER
990 AS1( jnz loop2) // loop2
991#else
992 AS1( jnz 2b ) // loop2
993#endif
968994
969 // last round995 // last round
970 /*996 /*
@@ -1114,9 +1140,9 @@
11141140
1115 // store1141 // store
1116 #ifdef __GNUC__1142 #ifdef __GNUC__
1117 AS2( mov esi, DWORD PTR [ebp + 16] ) // outBlock1143 AS2( movd esi, mm4 ) // outBlock
1118 #else1144 #else
1119 AS2( mov esi, DWORD PTR [ebp + 12] ) // outBlock1145 AS2( mov esi, DWORD PTR [ebp + 12] ) // outBlock
1120 #endif1146 #endif
1121 AS2( mov DWORD PTR [esi], eax )1147 AS2( mov DWORD PTR [esi], eax )
1122 AS2( mov DWORD PTR [esi + 4], ebx )1148 AS2( mov DWORD PTR [esi + 4], ebx )
11231149
=== modified file 'extra/yassl/taocrypt/src/arc4.cpp'
--- extra/yassl/taocrypt/src/arc4.cpp 2013-02-25 14:26:00 +0000
+++ extra/yassl/taocrypt/src/arc4.cpp 2014-03-27 17:18:17 +0000
@@ -111,28 +111,27 @@
111void ARC4::AsmProcess(byte* out, const byte* in, word32 length)111void ARC4::AsmProcess(byte* out, const byte* in, word32 length)
112{112{
113#ifdef __GNUC__113#ifdef __GNUC__
114 #define AS1(x) asm(#x);114 #define AS1(x) #x ";"
115 #define AS2(x, y) asm(#x ", " #y);115 #define AS2(x, y) #x ", " #y ";"
116116
117 #define PROLOG() \117 #define PROLOG() \
118 asm(".intel_syntax noprefix"); \118 __asm__ __volatile__ \
119 AS2( movd mm3, edi ) \119 ( \
120 AS2( movd mm4, ebx ) \120 ".intel_syntax noprefix;" \
121 AS2( movd mm5, esi ) \121 "push ebx;" \
122 AS2( movd mm6, ebp ) \122 "push ebp;" \
123 AS2( mov ecx, DWORD PTR [ebp + 8] ) \123 "mov ebp, eax;"
124 AS2( mov edi, DWORD PTR [ebp + 12] ) \
125 AS2( mov esi, DWORD PTR [ebp + 16] ) \
126 AS2( mov ebp, DWORD PTR [ebp + 20] )
127124
128 #define EPILOG() \125 #define EPILOG() \
129 AS2( movd ebp, mm6 ) \126 "pop ebp;" \
130 AS2( movd esi, mm5 ) \127 "pop ebx;" \
131 AS2( movd ebx, mm4 ) \128 "emms;" \
132 AS2( mov esp, ebp ) \129 ".att_syntax;" \
133 AS2( movd edi, mm3 ) \130 : \
134 AS1( emms ) \131 : "c" (this), "D" (out), "S" (in), "a" (length) \
135 asm(".att_syntax");132 : "%edx", "memory", "cc" \
133 );
134
136#else135#else
137 #define AS1(x) __asm x136 #define AS1(x) __asm x
138 #define AS2(x, y) __asm x, y137 #define AS2(x, y) __asm x, y
@@ -178,7 +177,11 @@
178 AS2( movzx eax, BYTE PTR [ebp + ecx] )177 AS2( movzx eax, BYTE PTR [ebp + ecx] )
179178
180179
181AS1( begin: )180#ifdef _MSC_VER
181 AS1( loopStart: ) // loopStart
182#else
183 AS1( 0: ) // loopStart for some gas (need numeric for jump back
184#endif
182185
183 // y = (y+a) & 0xff;186 // y = (y+a) & 0xff;
184 AS2( add edx, eax )187 AS2( add edx, eax )
@@ -215,7 +218,11 @@
215 AS1( inc edi )218 AS1( inc edi )
216219
217 AS1( dec DWORD PTR [esp] )220 AS1( dec DWORD PTR [esp] )
218 AS1( jnz begin )221#ifdef _MSC_VER
222 AS1( jnz loopStart ) // loopStart
223#else
224 AS1( jnz 0b ) // loopStart
225#endif
219226
220227
221 // write back to x_ and y_228 // write back to x_ and y_
@@ -225,6 +232,8 @@
225232
226AS1( nothing: )233AS1( nothing: )
227234
235 // inline adjust
236 AS2( add esp, 4 ) // fix room on stack
228237
229 EPILOG()238 EPILOG()
230}239}
231240
=== modified file 'extra/yassl/taocrypt/src/bftables.cpp'
--- extra/yassl/taocrypt/src/bftables.cpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/src/bftables.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/src/blowfish.cpp'
--- extra/yassl/taocrypt/src/blowfish.cpp 2013-02-26 05:35:17 +0000
+++ extra/yassl/taocrypt/src/blowfish.cpp 2014-03-27 17:18:17 +0000
@@ -54,7 +54,7 @@
54 in += BLOCK_SIZE;54 in += BLOCK_SIZE;
55 }55 }
56 else if (mode_ == CBC) {56 else if (mode_ == CBC) {
57 if (dir_ == ENCRYPTION)57 if (dir_ == ENCRYPTION) {
58 while (blocks--) {58 while (blocks--) {
59 r_[0] ^= *(word32*)in;59 r_[0] ^= *(word32*)in;
60 r_[1] ^= *(word32*)(in + 4);60 r_[1] ^= *(word32*)(in + 4);
@@ -66,7 +66,8 @@
66 out += BLOCK_SIZE;66 out += BLOCK_SIZE;
67 in += BLOCK_SIZE;67 in += BLOCK_SIZE;
68 }68 }
69 else69 }
70 else {
70 while (blocks--) {71 while (blocks--) {
71 AsmProcess(in, out);72 AsmProcess(in, out);
72 73
@@ -78,6 +79,7 @@
78 out += BLOCK_SIZE;79 out += BLOCK_SIZE;
79 in += BLOCK_SIZE;80 in += BLOCK_SIZE;
80 }81 }
82 }
81 }83 }
82}84}
8385
@@ -222,23 +224,26 @@
222224
223#if defined(DO_BLOWFISH_ASM)225#if defined(DO_BLOWFISH_ASM)
224 #ifdef __GNUC__226 #ifdef __GNUC__
225 #define AS1(x) asm(#x);227 #define AS1(x) #x ";"
226 #define AS2(x, y) asm(#x ", " #y);228 #define AS2(x, y) #x ", " #y ";"
227229
228 #define PROLOG() \230 #define PROLOG() \
229 asm(".intel_syntax noprefix"); \231 __asm__ __volatile__ \
230 AS2( movd mm3, edi ) \232 ( \
231 AS2( movd mm4, ebx ) \233 ".intel_syntax noprefix;" \
232 AS2( movd mm5, esi ) \234 "push ebx;" \
233 AS2( mov ecx, DWORD PTR [ebp + 8] ) \235 "push ebp;" \
234 AS2( mov esi, DWORD PTR [ebp + 12] )236 "movd mm3, eax;"
237 #define EPILOG() \
238 "pop ebp;" \
239 "pop ebx;" \
240 "emms;" \
241 ".att_syntax;" \
242 : \
243 : "c" (this), "S" (inBlock), "a" (outBlock) \
244 : "%edi", "%edx", "memory", "cc" \
245 );
235246
236 #define EPILOG() \
237 AS2( movd esi, mm5 ) \
238 AS2( movd ebx, mm4 ) \
239 AS2( movd edi, mm3 ) \
240 AS1( emms ) \
241 asm(".att_syntax");
242 #else247 #else
243 #define AS1(x) __asm x248 #define AS1(x) __asm x
244 #define AS2(x, y) __asm x, y249 #define AS2(x, y) __asm x, y
@@ -286,7 +291,9 @@
286291
287292
288#ifdef _MSC_VER293#ifdef _MSC_VER
289 __declspec(naked) 294 __declspec(naked)
295#else
296 __attribute__ ((noinline))
290#endif297#endif
291void Blowfish::AsmProcess(const byte* inBlock, byte* outBlock) const298void Blowfish::AsmProcess(const byte* inBlock, byte* outBlock) const
292{299{
@@ -335,7 +342,7 @@
335 #endif342 #endif
336343
337 #ifdef __GNUC__344 #ifdef __GNUC__
338 AS2( mov edi, [ebp + 16] ) // outBlock345 AS2( movd edi, mm3 ) // outBlock
339 #else346 #else
340 AS2( mov edi, [ebp + 12] ) // outBlock347 AS2( mov edi, [ebp + 12] ) // outBlock
341 #endif348 #endif
342349
=== modified file 'extra/yassl/taocrypt/src/des.cpp'
--- extra/yassl/taocrypt/src/des.cpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/src/des.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
@@ -473,7 +474,7 @@
473474
474 uses ecx475 uses ecx
475*/476*/
476#define AsmIPERM() {\477#define AsmIPERM() \
477 AS2( rol ebx, 4 ) \478 AS2( rol ebx, 4 ) \
478 AS2( mov ecx, eax ) \479 AS2( mov ecx, eax ) \
479 AS2( xor ecx, ebx ) \480 AS2( xor ecx, ebx ) \
@@ -504,7 +505,7 @@
504 AS2( and ecx, 0xaaaaaaaa ) \505 AS2( and ecx, 0xaaaaaaaa ) \
505 AS2( xor eax, ecx ) \506 AS2( xor eax, ecx ) \
506 AS2( rol eax, 1 ) \507 AS2( rol eax, 1 ) \
507 AS2( xor ebx, ecx ) }508 AS2( xor ebx, ecx )
508509
509510
510/* Uses FPERM algorithm from above511/* Uses FPERM algorithm from above
@@ -514,7 +515,7 @@
514515
515 uses ecx516 uses ecx
516*/517*/
517#define AsmFPERM() {\518#define AsmFPERM() \
518 AS2( ror ebx, 1 ) \519 AS2( ror ebx, 1 ) \
519 AS2( mov ecx, eax ) \520 AS2( mov ecx, eax ) \
520 AS2( xor ecx, ebx ) \521 AS2( xor ecx, ebx ) \
@@ -545,7 +546,7 @@
545 AS2( and ecx, 0xf0f0f0f0 ) \546 AS2( and ecx, 0xf0f0f0f0 ) \
546 AS2( xor eax, ecx ) \547 AS2( xor eax, ecx ) \
547 AS2( xor ebx, ecx ) \548 AS2( xor ebx, ecx ) \
548 AS2( ror eax, 4 ) }549 AS2( ror eax, 4 )
549550
550551
551552
@@ -641,32 +642,34 @@
641642
642643
643#ifdef _MSC_VER644#ifdef _MSC_VER
644 __declspec(naked) 645 __declspec(naked)
646#else
647 __attribute__ ((noinline))
645#endif648#endif
646void DES_EDE3::AsmProcess(const byte* in, byte* out, void* box) const649void DES_EDE3::AsmProcess(const byte* in, byte* out, void* box) const
647{650{
648#ifdef __GNUC__651#ifdef __GNUC__
649 #define AS1(x) asm(#x);652 #define AS1(x) #x ";"
650 #define AS2(x, y) asm(#x ", " #y);653 #define AS2(x, y) #x ", " #y ";"
651
652 asm(".intel_syntax noprefix");
653654
654 #define PROLOG() \655 #define PROLOG() \
655 AS2( movd mm3, edi ) \656 __asm__ __volatile__ \
656 AS2( movd mm4, ebx ) \657 ( \
657 AS2( movd mm5, esi ) \658 ".intel_syntax noprefix;" \
658 AS2( movd mm6, ebp ) \659 "push ebx;" \
659 AS2( mov edx, DWORD PTR [ebp + 8] ) \660 "push ebp;" \
660 AS2( mov esi, DWORD PTR [ebp + 12] ) \661 "movd mm6, ebp;" \
661 AS2( mov ebp, DWORD PTR [ebp + 20] )662 "movd mm7, ecx;" \
662663 "mov ebp, eax;"
663 // ebp restored at end664 #define EPILOG() \
664 #define EPILOG() \665 "pop ebp;" \
665 AS2( movd edi, mm3 ) \666 "pop ebx;" \
666 AS2( movd ebx, mm4 ) \667 "emms;" \
667 AS2( movd esi, mm5 ) \668 ".att_syntax;" \
668 AS1( emms ) \669 : \
669 asm(".att_syntax");670 : "d" (this), "S" (in), "a" (box), "c" (out) \
671 : "%edi", "memory", "cc" \
672 );
670673
671#else674#else
672 #define AS1(x) __asm x675 #define AS1(x) __asm x
@@ -756,7 +759,7 @@
756 AS1( bswap eax )759 AS1( bswap eax )
757760
758#ifdef __GNUC__761#ifdef __GNUC__
759 AS2( mov esi, DWORD PTR [ebp + 16] ) // outBlock762 AS2( movd esi, mm7 ) // outBlock
760#else763#else
761 AS2( mov esi, DWORD PTR [ebp + 12] ) // outBlock764 AS2( mov esi, DWORD PTR [ebp + 12] ) // outBlock
762#endif765#endif
763766
=== modified file 'extra/yassl/taocrypt/src/dh.cpp'
--- extra/yassl/taocrypt/src/dh.cpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/src/dh.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/src/file.cpp'
--- extra/yassl/taocrypt/src/file.cpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/src/file.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/src/integer.cpp'
--- extra/yassl/taocrypt/src/integer.cpp 2012-03-02 12:23:52 +0000
+++ extra/yassl/taocrypt/src/integer.cpp 2014-03-27 17:18:17 +0000
@@ -55,7 +55,9 @@
55 #include <emmintrin.h>55 #include <emmintrin.h>
56 #endif56 #endif
57#elif defined(_MSC_VER) && defined(_M_IX86)57#elif defined(_MSC_VER) && defined(_M_IX86)
58 #pragma message("You do not seem to have the Visual C++ Processor Pack ")58/* #pragma message("You do not seem to have the Visual C++ Processor Pack ")
59 #pragma message("installed, so use of SSE2 intrinsics will be disabled.")
60*/
59 #pragma message("installed, so use of SSE2 intrinsics will be disabled.")61 #pragma message("installed, so use of SSE2 intrinsics will be disabled.")
60#elif defined(__GNUC__) && defined(__i386__)62#elif defined(__GNUC__) && defined(__i386__)
61/* #warning You do not have GCC 3.3 or later, or did not specify the -msse2 \63/* #warning You do not have GCC 3.3 or later, or did not specify the -msse2 \
@@ -73,7 +75,7 @@
73CPP_TYPENAME AlignedAllocator<T>::pointer AlignedAllocator<T>::allocate(75CPP_TYPENAME AlignedAllocator<T>::pointer AlignedAllocator<T>::allocate(
74 size_type n, const void *)76 size_type n, const void *)
75{77{
76 if (n > max_size())78 if (n > this->max_size())
77 return 0;79 return 0;
78 if (n == 0)80 if (n == 0)
79 return 0;81 return 0;
8082
=== modified file 'extra/yassl/taocrypt/src/md2.cpp'
--- extra/yassl/taocrypt/src/md2.cpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/src/md2.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/src/md5.cpp'
--- extra/yassl/taocrypt/src/md5.cpp 2013-02-25 14:26:00 +0000
+++ extra/yassl/taocrypt/src/md5.cpp 2014-03-27 17:18:17 +0000
@@ -223,32 +223,32 @@
223223
224224
225#ifdef _MSC_VER225#ifdef _MSC_VER
226 __declspec(naked) 226 __declspec(naked)
227#else
228 __attribute__ ((noinline))
227#endif229#endif
228void MD5::AsmTransform(const byte* data, word32 times)230void MD5::AsmTransform(const byte* data, word32 times)
229{231{
230#ifdef __GNUC__232#ifdef __GNUC__
231 #define AS1(x) asm(#x);233 #define AS1(x) #x ";"
232 #define AS2(x, y) asm(#x ", " #y);234 #define AS2(x, y) #x ", " #y ";"
233235
234 #define PROLOG() \236 #define PROLOG() \
235 asm(".intel_syntax noprefix"); \237 __asm__ __volatile__ \
236 AS2( movd mm3, edi ) \238 ( \
237 AS2( movd mm4, ebx ) \239 ".intel_syntax noprefix;" \
238 AS2( movd mm5, esi ) \240 "push ebx;" \
239 AS2( movd mm6, ebp ) \241 "push ebp;"
240 AS2( mov ecx, DWORD PTR [ebp + 8] ) \
241 AS2( mov edi, DWORD PTR [ebp + 12] ) \
242 AS2( mov eax, DWORD PTR [ebp + 16] )
243
244 #define EPILOG() \242 #define EPILOG() \
245 AS2( movd ebp, mm6 ) \243 "pop ebp;" \
246 AS2( movd esi, mm5 ) \244 "pop ebx;" \
247 AS2( movd ebx, mm4 ) \245 "emms;" \
248 AS2( mov esp, ebp ) \246 ".att_syntax;" \
249 AS2( movd edi, mm3 ) \247 : \
250 AS1( emms ) \248 : "c" (this), "D" (data), "a" (times) \
251 asm(".att_syntax");249 : "%esi", "%edx", "memory", "cc" \
250 );
251
252#else252#else
253 #define AS1(x) __asm x253 #define AS1(x) __asm x
254 #define AS2(x, y) __asm x, y254 #define AS2(x, y) __asm x, y
@@ -294,7 +294,11 @@
294 AS2( mov ecx, [esi + 8] ) // c294 AS2( mov ecx, [esi + 8] ) // c
295 AS2( mov edx, [esi + 12] ) // d295 AS2( mov edx, [esi + 12] ) // d
296 296
297AS1(loopStart:)297#ifdef _MSC_VER
298 AS1( loopStart: ) // loopStart
299#else
300 AS1( 0: ) // loopStart for some gas (need numeric for jump back
301#endif
298302
299 // set up303 // set up
300 AS2( mov esi, ecx )304 AS2( mov esi, ecx )
@@ -389,7 +393,11 @@
389 AS2( movd ebp, mm2 ) // times393 AS2( movd ebp, mm2 ) // times
390 AS1( dec ebp )394 AS1( dec ebp )
391 AS2( movd mm2, ebp )395 AS2( movd mm2, ebp )
392 AS1( jnz loopStart )396#ifdef _MSC_VER
397 AS1( jnz loopStart ) // loopStart
398#else
399 AS1( jnz 0b ) // loopStart
400#endif
393401
394402
395 EPILOG()403 EPILOG()
396404
=== modified file 'extra/yassl/taocrypt/src/rabbit.cpp'
--- extra/yassl/taocrypt/src/rabbit.cpp 2013-02-25 14:26:00 +0000
+++ extra/yassl/taocrypt/src/rabbit.cpp 2014-03-27 17:18:17 +0000
@@ -198,7 +198,6 @@
198{198{
199 /* Temporary variables */199 /* Temporary variables */
200 word32 i;200 word32 i;
201 byte buffer[16];
202201
203 /* Encrypt/decrypt all full blocks */202 /* Encrypt/decrypt all full blocks */
204 while (msglen >= 16) {203 while (msglen >= 16) {
@@ -227,17 +226,23 @@
227226
228 /* Encrypt/decrypt remaining data */227 /* Encrypt/decrypt remaining data */
229 if (msglen) {228 if (msglen) {
229
230 word32 tmp[4];
231 byte* buffer = (byte*)tmp;
232
233 memset(tmp, 0, sizeof(tmp)); /* help static analysis */
234
230 /* Iterate the system */235 /* Iterate the system */
231 NextState(Work);236 NextState(Work);
232237
233 /* Generate 16 bytes of pseudo-random data */238 /* Generate 16 bytes of pseudo-random data */
234 *(word32*)(buffer+ 0) = LITTLE32(workCtx_.x[0] ^239 tmp[0] = LITTLE32(workCtx_.x[0] ^
235 (workCtx_.x[5]>>16) ^ U32V(workCtx_.x[3]<<16));240 (workCtx_.x[5]>>16) ^ U32V(workCtx_.x[3]<<16));
236 *(word32*)(buffer+ 4) = LITTLE32(workCtx_.x[2] ^ 241 tmp[1] = LITTLE32(workCtx_.x[2] ^
237 (workCtx_.x[7]>>16) ^ U32V(workCtx_.x[5]<<16));242 (workCtx_.x[7]>>16) ^ U32V(workCtx_.x[5]<<16));
238 *(word32*)(buffer+ 8) = LITTLE32(workCtx_.x[4] ^ 243 tmp[2] = LITTLE32(workCtx_.x[4] ^
239 (workCtx_.x[1]>>16) ^ U32V(workCtx_.x[7]<<16));244 (workCtx_.x[1]>>16) ^ U32V(workCtx_.x[7]<<16));
240 *(word32*)(buffer+12) = LITTLE32(workCtx_.x[6] ^ 245 tmp[3] = LITTLE32(workCtx_.x[6] ^
241 (workCtx_.x[3]>>16) ^ U32V(workCtx_.x[1]<<16));246 (workCtx_.x[3]>>16) ^ U32V(workCtx_.x[1]<<16));
242247
243 /* Encrypt/decrypt the data */248 /* Encrypt/decrypt the data */
244249
=== modified file 'extra/yassl/taocrypt/src/ripemd.cpp'
--- extra/yassl/taocrypt/src/ripemd.cpp 2013-02-25 14:26:00 +0000
+++ extra/yassl/taocrypt/src/ripemd.cpp 2014-03-27 17:18:17 +0000
@@ -511,27 +511,26 @@
511void RIPEMD160::AsmTransform(const byte* data, word32 times)511void RIPEMD160::AsmTransform(const byte* data, word32 times)
512{512{
513#ifdef __GNUC__513#ifdef __GNUC__
514 #define AS1(x) asm(#x);514 #define AS1(x) #x ";"
515 #define AS2(x, y) asm(#x ", " #y);515 #define AS2(x, y) #x ", " #y ";"
516516
517 #define PROLOG() \517 #define PROLOG() \
518 asm(".intel_syntax noprefix"); \518 __asm__ __volatile__ \
519 AS2( movd mm3, edi ) \519 ( \
520 AS2( movd mm4, ebx ) \520 ".intel_syntax noprefix;" \
521 AS2( movd mm5, esi ) \521 "push ebx;" \
522 AS2( movd mm6, ebp ) \522 "push ebp;"
523 AS2( mov ecx, DWORD PTR [ebp + 8] ) \
524 AS2( mov edi, DWORD PTR [ebp + 12] ) \
525 AS2( mov edx, DWORD PTR [ebp + 16] )
526523
527 #define EPILOG() \524 #define EPILOG() \
528 AS2( movd ebp, mm6 ) \525 "pop ebp;" \
529 AS2( movd esi, mm5 ) \526 "pop ebx;" \
530 AS2( movd ebx, mm4 ) \527 "emms;" \
531 AS2( mov esp, ebp ) \528 ".att_syntax;" \
532 AS2( movd edi, mm3 ) \529 : \
533 AS1( emms ) \530 : "c" (this), "D" (data), "d" (times) \
534 asm(".att_syntax");531 : "%esi", "%eax", "memory", "cc" \
532 );
533
535#else534#else
536 #define AS1(x) __asm x535 #define AS1(x) __asm x
537 #define AS2(x, y) __asm x, y536 #define AS2(x, y) __asm x, y
@@ -569,7 +568,11 @@
569 AS2( sub esp, 24 ) // make room for tmp a1 - e1568 AS2( sub esp, 24 ) // make room for tmp a1 - e1
570 AS2( movd mm1, esi ) // store digest_569 AS2( movd mm1, esi ) // store digest_
571 570
572AS1( loopStart: )571#ifdef _MSC_VER
572 AS1( loopStart: ) // loopStart
573#else
574 AS1( 0: ) // loopStart for some gas (need numeric for jump back
575#endif
573576
574 AS2( movd mm2, edx ) // store times_577 AS2( movd mm2, edx ) // store times_
575578
@@ -821,8 +824,14 @@
821 AS2( movd edx, mm2 ) // times824 AS2( movd edx, mm2 ) // times
822 AS2( movd edi, mm0 ) // data, already advanced825 AS2( movd edi, mm0 ) // data, already advanced
823 AS1( dec edx )826 AS1( dec edx )
824 AS1( jnz loopStart )827#ifdef _MSC_VER
828 AS1( jnz loopStart ) // loopStart
829#else
830 AS1( jnz 0b ) // loopStart
831#endif
825832
833 // inline adjust
834 AS2( add esp, 24 ) // fix room on stack
826835
827 EPILOG()836 EPILOG()
828}837}
829838
=== modified file 'extra/yassl/taocrypt/src/sha.cpp'
--- extra/yassl/taocrypt/src/sha.cpp 2013-02-25 14:26:00 +0000
+++ extra/yassl/taocrypt/src/sha.cpp 2014-03-27 17:18:17 +0000
@@ -760,32 +760,33 @@
760760
761761
762#ifdef _MSC_VER762#ifdef _MSC_VER
763 __declspec(naked) 763 __declspec(naked)
764#else
765 __attribute__ ((noinline))
764#endif766#endif
765void SHA::AsmTransform(const byte* data, word32 times)767void SHA::AsmTransform(const byte* data, word32 times)
766{768{
767#ifdef __GNUC__769#ifdef __GNUC__
768 #define AS1(x) asm(#x);770 #define AS1(x) #x ";"
769 #define AS2(x, y) asm(#x ", " #y);771 #define AS2(x, y) #x ", " #y ";"
770772
771 #define PROLOG() \773 #define PROLOG() \
772 asm(".intel_syntax noprefix"); \774 __asm__ __volatile__ \
773 AS2( movd mm3, edi ) \775 ( \
774 AS2( movd mm4, ebx ) \776 ".intel_syntax noprefix;" \
775 AS2( movd mm5, esi ) \777 "push ebx;" \
776 AS2( movd mm6, ebp ) \778 "push ebp;"
777 AS2( mov ecx, DWORD PTR [ebp + 8] ) \
778 AS2( mov edi, DWORD PTR [ebp + 12] ) \
779 AS2( mov eax, DWORD PTR [ebp + 16] )
780779
781 #define EPILOG() \780 #define EPILOG() \
782 AS2( movd ebp, mm6 ) \781 "pop ebp;" \
783 AS2( movd esi, mm5 ) \782 "pop ebx;" \
784 AS2( movd ebx, mm4 ) \783 "emms;" \
785 AS2( mov esp, ebp ) \784 ".att_syntax;" \
786 AS2( movd edi, mm3 ) \785 : \
787 AS1( emms ) \786 : "c" (this), "D" (data), "a" (times) \
788 asm(".att_syntax");787 : "%esi", "%edx", "memory", "cc" \
788 );
789
789#else790#else
790 #define AS1(x) __asm x791 #define AS1(x) __asm x
791 #define AS2(x, y) __asm x, y792 #define AS2(x, y) __asm x, y
@@ -826,7 +827,11 @@
826827
827 AS2( sub esp, 68 ) // make room on stack828 AS2( sub esp, 68 ) // make room on stack
828829
829AS1( loopStart: )830#ifdef _MSC_VER
831 AS1( loopStart: ) // loopStart
832#else
833 AS1( 0: ) // loopStart for some gas (need numeric for jump back
834#endif
830835
831 // byte reverse 16 words of input, 4 at a time, put on stack for W[]836 // byte reverse 16 words of input, 4 at a time, put on stack for W[]
832837
@@ -1011,8 +1016,14 @@
1011 1016
1012 AS1( dec ebp )1017 AS1( dec ebp )
1013 AS2( movd mm2, ebp )1018 AS2( movd mm2, ebp )
1014 AS1( jnz loopStart )1019#ifdef _MSC_VER
1020 AS1( jnz loopStart ) // loopStart
1021#else
1022 AS1( jnz 0b ) // loopStart
1023#endif
10151024
1025 // inline adjust
1026 AS2( add esp, 68 ) // fix room on stack
10161027
1017 EPILOG()1028 EPILOG()
1018}1029}
10191030
=== modified file 'extra/yassl/taocrypt/src/tftables.cpp'
--- extra/yassl/taocrypt/src/tftables.cpp 2007-01-29 15:54:40 +0000
+++ extra/yassl/taocrypt/src/tftables.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1/*1/*
2 Copyright (C) 2000-2007 MySQL AB2 Copyright (C) 2000-2007 MySQL AB
3 Use is subject to license terms
34
4 This program is free software; you can redistribute it and/or modify5 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by6 it under the terms of the GNU General Public License as published by
67
=== modified file 'extra/yassl/taocrypt/src/twofish.cpp'
--- extra/yassl/taocrypt/src/twofish.cpp 2013-02-26 05:35:17 +0000
+++ extra/yassl/taocrypt/src/twofish.cpp 2014-03-27 17:18:17 +0000
@@ -55,7 +55,7 @@
55 in += BLOCK_SIZE;55 in += BLOCK_SIZE;
56 }56 }
57 else if (mode_ == CBC) {57 else if (mode_ == CBC) {
58 if (dir_ == ENCRYPTION)58 if (dir_ == ENCRYPTION) {
59 while (blocks--) {59 while (blocks--) {
60 r_[0] ^= *(word32*)in;60 r_[0] ^= *(word32*)in;
61 r_[1] ^= *(word32*)(in + 4);61 r_[1] ^= *(word32*)(in + 4);
@@ -68,7 +68,8 @@
68 out += BLOCK_SIZE;68 out += BLOCK_SIZE;
69 in += BLOCK_SIZE;69 in += BLOCK_SIZE;
70 }70 }
71 else71 }
72 else {
72 while (blocks--) {73 while (blocks--) {
73 AsmDecrypt(in, out);74 AsmDecrypt(in, out);
74 75
@@ -82,6 +83,7 @@
82 out += BLOCK_SIZE;83 out += BLOCK_SIZE;
83 in += BLOCK_SIZE;84 in += BLOCK_SIZE;
84 }85 }
86 }
85 }87 }
86}88}
8789
@@ -272,25 +274,28 @@
272274
273#if defined(DO_TWOFISH_ASM)275#if defined(DO_TWOFISH_ASM)
274 #ifdef __GNUC__276 #ifdef __GNUC__
275 #define AS1(x) asm(#x);277 #define AS1(x) #x ";"
276 #define AS2(x, y) asm(#x ", " #y);278 #define AS2(x, y) #x ", " #y ";"
277279
278 #define PROLOG() \280 #define PROLOG() \
279 asm(".intel_syntax noprefix"); \281 __asm__ __volatile__ \
280 AS2( movd mm3, edi ) \282 ( \
281 AS2( movd mm4, ebx ) \283 ".intel_syntax noprefix;" \
282 AS2( movd mm5, esi ) \284 "push ebx;" \
283 AS2( movd mm6, ebp ) \285 "push ebp;" \
284 AS2( mov edi, DWORD PTR [ebp + 8] ) \286 "movd mm3, eax;" \
285 AS2( mov esi, DWORD PTR [ebp + 12] )287 "movd mm6, ebp;"
286288
287 #define EPILOG() \289 #define EPILOG() \
288 AS2( movd esp, mm6 ) \290 "pop ebp;" \
289 AS2( movd esi, mm5 ) \291 "pop ebx;" \
290 AS2( movd ebx, mm4 ) \292 "emms;" \
291 AS2( movd edi, mm3 ) \293 ".att_syntax;" \
292 AS1( emms ) \294 : \
293 asm(".att_syntax");295 : "D" (this), "S" (inBlock), "a" (outBlock) \
296 : "%ecx", "%edx", "memory", "cc" \
297 );
298
294 #else299 #else
295 #define AS1(x) __asm x300 #define AS1(x) __asm x
296 #define AS2(x, y) __asm x, y301 #define AS2(x, y) __asm x, y
@@ -424,6 +429,8 @@
424429
425#ifdef _MSC_VER430#ifdef _MSC_VER
426 __declspec(naked) 431 __declspec(naked)
432#else
433 __attribute__ ((noinline))
427#endif434#endif
428void Twofish::AsmEncrypt(const byte* inBlock, byte* outBlock) const435void Twofish::AsmEncrypt(const byte* inBlock, byte* outBlock) const
429{436{
@@ -472,7 +479,7 @@
472 AS2( movd ebp, mm6 )479 AS2( movd ebp, mm6 )
473 AS2( movd esi, mm0 ) // k_480 AS2( movd esi, mm0 ) // k_
474 #ifdef __GNUC__481 #ifdef __GNUC__
475 AS2( mov edi, [ebp + 16] ) // outBlock482 AS2( movd edi, mm3 ) // outBlock
476 #else483 #else
477 AS2( mov edi, [ebp + 12] ) // outBlock484 AS2( mov edi, [ebp + 12] ) // outBlock
478 #endif485 #endif
@@ -493,7 +500,9 @@
493500
494501
495#ifdef _MSC_VER502#ifdef _MSC_VER
496 __declspec(naked) 503 __declspec(naked)
504#else
505 __attribute__ ((noinline))
497#endif506#endif
498void Twofish::AsmDecrypt(const byte* inBlock, byte* outBlock) const507void Twofish::AsmDecrypt(const byte* inBlock, byte* outBlock) const
499{508{
@@ -542,7 +551,7 @@
542 AS2( movd ebp, mm6 )551 AS2( movd ebp, mm6 )
543 AS2( movd esi, mm0 ) // k_552 AS2( movd esi, mm0 ) // k_
544 #ifdef __GNUC__553 #ifdef __GNUC__
545 AS2( mov edi, [ebp + 16] ) // outBlock554 AS2( movd edi, mm3 ) // outBlock
546 #else555 #else
547 AS2( mov edi, [ebp + 12] ) // outBlock556 AS2( mov edi, [ebp + 12] ) // outBlock
548 #endif557 #endif
549558
=== modified file 'extra/yassl/taocrypt/test/test.cpp'
--- extra/yassl/taocrypt/test/test.cpp 2013-02-25 14:26:00 +0000
+++ extra/yassl/taocrypt/test/test.cpp 2014-03-27 17:18:17 +0000
@@ -1,5 +1,5 @@
1/*1/*
2 Copyright (c) 2006, 2012, Oracle and/or its affiliates. All rights reserved.2 Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
33
4 This program is free software; you can redistribute it and/or modify4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by5 it under the terms of the GNU General Public License as published by
@@ -1165,12 +1165,12 @@
1165 RSAES_Encryptor enc(priv);1165 RSAES_Encryptor enc(priv);
1166 byte message[] = "Everyone gets Friday off.";1166 byte message[] = "Everyone gets Friday off.";
1167 const word32 len = (word32)strlen((char*)message);1167 const word32 len = (word32)strlen((char*)message);
1168 byte cipher[64];1168 byte cipher[512];
1169 enc.Encrypt(message, len, cipher, rng);1169 enc.Encrypt(message, len, cipher, rng);
11701170
1171 RSAES_Decryptor dec(priv);1171 RSAES_Decryptor dec(priv);
1172 byte plain[64];1172 byte plain[512];
1173 dec.Decrypt(cipher, sizeof(plain), plain, rng);1173 dec.Decrypt(cipher, priv.FixedCiphertextLength(), plain, rng);
11741174
1175 if (memcmp(plain, message, len))1175 if (memcmp(plain, message, len))
1176 return -70;1176 return -70;
@@ -1242,11 +1242,11 @@
1242int dsa_test()1242int dsa_test()
1243{1243{
1244 Source source;1244 Source source;
1245 FileSource("../certs/dsa512.der", source);1245 FileSource("../certs/dsa1024.der", source);
1246 if (source.size() == 0) {1246 if (source.size() == 0) {
1247 FileSource("../../certs/dsa512.der", source); // for testsuite1247 FileSource("../../certs/dsa1024.der", source); // for testsuite
1248 if (source.size() == 0) {1248 if (source.size() == 0) {
1249 FileSource("../../../certs/dsa512.der", source); // win32 Debug dir1249 FileSource("../../../certs/dsa1024.der", source); // win32 Debug dir
1250 if (source.size() == 0)1250 if (source.size() == 0)
1251 err_sys("where's your certs dir?", -89);1251 err_sys("where's your certs dir?", -89);
1252 }1252 }
12531253
=== modified file 'include/m_ctype.h'
--- include/m_ctype.h 2013-02-26 05:35:17 +0000
+++ include/m_ctype.h 2014-03-27 17:18:17 +0000
@@ -372,13 +372,13 @@
372static inline my_bool372static inline my_bool
373my_cs_can_be_contraction_head(CHARSET_INFO *cs, my_wc_t wc)373my_cs_can_be_contraction_head(CHARSET_INFO *cs, my_wc_t wc)
374{374{
375 return ((const char *)cs->contractions)[0x40*0x40 + (wc & 0xFF)];375 return ((const char *) cs->contractions)[0x40 * 0x40 * 2 + (wc & 0xFF)];
376}376}
377377
378static inline my_bool378static inline my_bool
379my_cs_can_be_contraction_tail(CHARSET_INFO *cs, my_wc_t wc)379my_cs_can_be_contraction_tail(CHARSET_INFO *cs, my_wc_t wc)
380{380{
381 return ((const char *)cs->contractions)[0x40*0x40 + (wc & 0xFF)];381 return ((const char *) cs->contractions)[0x40 * 0x40 * 2 + (wc & 0xFF)];
382}382}
383383
384static inline uint16*384static inline uint16*
385385
=== modified file 'include/mysql_version.h.in'
--- include/mysql_version.h.in 2013-02-26 05:35:17 +0000
+++ include/mysql_version.h.in 2014-03-27 17:18:17 +0000
@@ -1,6 +1,7 @@
1/* Copyright (c) 1996, 1999-2004, 2007 MySQL AB1/* Copyright Abandoned 1996,1999 TCX DataKonsult AB & Monty Program KB
2 Use is subject to license terms2 & Detron HB, 1996, 1999-2004, 2007 MySQL AB.
3 This file is public domain and comes with NO WARRANTY of any kind */3 This file is public domain and comes with NO WARRANTY of any kind
4*/
45
5/* Version numbers for protocol & mysqld */6/* Version numbers for protocol & mysqld */
67
78
=== modified file 'include/t_ctype.h'
--- include/t_ctype.h 2013-03-19 14:53:48 +0000
+++ include/t_ctype.h 2014-03-27 17:18:17 +0000
@@ -1,4 +1,5 @@
1/* Copyright (C) 2000 MySQL AB1/* Copyright (C) 2000 MySQL AB
2 Use is subject to license terms
23
3 This program is free software; you can redistribute it and/or modify4 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by5 it under the terms of the GNU General Public License as published by
56
=== modified file 'libmysql/CMakeLists.txt'
--- libmysql/CMakeLists.txt 2014-02-03 04:39:37 +0000
+++ libmysql/CMakeLists.txt 2014-03-27 17:18:17 +0000
@@ -1,4 +1,4 @@
1# Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.1# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
2# 2#
3# This program is free software; you can redistribute it and/or modify3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by4# it under the terms of the GNU General Public License as published by
@@ -174,6 +174,12 @@
174 INSTALL_DEBUG_TARGET(clientlib DESTINATION ${INSTALL_LIBDIR}/debug)174 INSTALL_DEBUG_TARGET(clientlib DESTINATION ${INSTALL_LIBDIR}/debug)
175ENDIF()175ENDIF()
176176
177MACRO(GET_TARGET_NAME target out_name)
178 GET_TARGET_PROPERTY(location ${target} LOCATION)
179 GET_FILENAME_COMPONENT(name ${location} NAME)
180 SET(${out_name} ${name})
181ENDMACRO()
182
177IF(UNIX)183IF(UNIX)
178 MACRO(GET_VERSIONED_LIBNAME LIBNAME EXTENSION VERSION OUTNAME)184 MACRO(GET_VERSIONED_LIBNAME LIBNAME EXTENSION VERSION OUTNAME)
179 SET(DOT_VERSION ".${VERSION}")185 SET(DOT_VERSION ".${VERSION}")
@@ -186,11 +192,19 @@
186 SET(${OUTNAME} ${LIBNAME}${EXTENSION}${DOT_VERSION})192 SET(${OUTNAME} ${LIBNAME}${EXTENSION}${DOT_VERSION})
187 ENDIF() 193 ENDIF()
188 ENDMACRO()194 ENDMACRO()
189 INSTALL_SYMLINK(${CMAKE_STATIC_LIBRARY_PREFIX}perconaserverclient_r.a perconaserverclient ${INSTALL_LIBDIR} Development)195ENDIF()
196
197IF(UNIX)
198 GET_TARGET_NAME(perconaserverclient lib_name)
199 INSTALL_SYMLINK(perconaserverclient
200 ${lib_name} ${CMAKE_STATIC_LIBRARY_PREFIX}perconaserverclient_r.a
201 ${INSTALL_LIBDIR} Development)
190ENDIF()202ENDIF()
191203
192IF(NOT DISABLE_SHARED)204IF(NOT DISABLE_SHARED)
193 MERGE_LIBRARIES(libmysql SHARED ${LIBS} EXPORTS ${CLIENT_API_FUNCTIONS} COMPONENT SharedLibraries)205 MERGE_LIBRARIES(libmysql SHARED ${LIBS}
206 EXPORTS ${CLIENT_API_FUNCTIONS}
207 COMPONENT SharedLibraries)
194 IF(UNIX)208 IF(UNIX)
195 # libtool compatability209 # libtool compatability
196 IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR APPLE)210 IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR APPLE)
@@ -198,7 +212,8 @@
198 ELSEIF(CMAKE_SYSTEM_NAME MATCHES "HP-UX")212 ELSEIF(CMAKE_SYSTEM_NAME MATCHES "HP-UX")
199 SET(OS_SHARED_LIB_VERSION "${SHARED_LIB_MAJOR_VERSION}.0")213 SET(OS_SHARED_LIB_VERSION "${SHARED_LIB_MAJOR_VERSION}.0")
200 ELSE()214 ELSE()
201 SET(OS_SHARED_LIB_VERSION "${SHARED_LIB_MAJOR_VERSION}.0.0")215 SET(OS_SHARED_LIB_VERSION
216 "${SHARED_LIB_MAJOR_VERSION}.${SHARED_LIB_MINOR_VERSION}.0")
202 ENDIF()217 ENDIF()
203 # Name of shared library is perconaserverclient on Unix218 # Name of shared library is perconaserverclient on Unix
204 SET_TARGET_PROPERTIES(libmysql PROPERTIES 219 SET_TARGET_PROPERTIES(libmysql PROPERTIES
@@ -227,8 +242,13 @@
227 "${CMAKE_SHARED_LIBRARY_SUFFIX}"242 "${CMAKE_SHARED_LIBRARY_SUFFIX}"
228 ""243 ""
229 linkname)244 linkname)
230 INSTALL_SYMLINK(${linkname} libmysql ${INSTALL_LIBDIR} SharedLibraries)245 GET_TARGET_NAME(libmysql lib_name)
231 SET(OS_SHARED_LIB_SYMLINKS "${SHARED_LIB_MAJOR_VERSION}" "${OS_SHARED_LIB_VERSION}")246 GET_FILENAME_COMPONENT(lib_name_we ${lib_name} NAME_WE)
247 INSTALL_SYMLINK(libmysql
248 ${lib_name} ${linkname}
249 ${INSTALL_LIBDIR} SharedLibraries)
250 SET(OS_SHARED_LIB_SYMLINKS
251 "${SHARED_LIB_MAJOR_VERSION}" "${OS_SHARED_LIB_VERSION}")
232 LIST(REMOVE_DUPLICATES OS_SHARED_LIB_SYMLINKS)252 LIST(REMOVE_DUPLICATES OS_SHARED_LIB_SYMLINKS)
233 FOREACH(ver ${OS_SHARED_LIB_SYMLINKS})253 FOREACH(ver ${OS_SHARED_LIB_SYMLINKS})
234 GET_VERSIONED_LIBNAME(254 GET_VERSIONED_LIBNAME(
@@ -236,7 +256,11 @@
236 "${CMAKE_SHARED_LIBRARY_SUFFIX}"256 "${CMAKE_SHARED_LIBRARY_SUFFIX}"
237 "${ver}"257 "${ver}"
238 linkname)258 linkname)
239 INSTALL_SYMLINK(${linkname} libmysql ${INSTALL_LIBDIR} SharedLibraries)259 GET_VERSIONED_LIBNAME(
260 ${lib_name_we} "${CMAKE_SHARED_LIBRARY_SUFFIX}" "${ver}" lib_name_ver)
261 INSTALL_SYMLINK(libmysql
262 ${lib_name_ver} ${linkname}
263 ${INSTALL_LIBDIR} SharedLibraries)
240 ENDFOREACH()264 ENDFOREACH()
241 ENDIF()265 ENDIF()
242ENDIF()266ENDIF()
243267
=== modified file 'libmysqld/CMakeLists.txt'
--- libmysqld/CMakeLists.txt 2012-02-16 09:48:16 +0000
+++ libmysqld/CMakeLists.txt 2014-03-27 17:18:17 +0000
@@ -1,4 +1,4 @@
1# Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.1# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
2# 2#
3# This program is free software; you can redistribute it and/or modify3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by4# it under the terms of the GNU General Public License as published by
@@ -143,3 +143,37 @@
143 MERGE_LIBRARIES(libmysqld SHARED ${LIBS} EXPORTS ${CLIENT_API_FUNCTIONS}143 MERGE_LIBRARIES(libmysqld SHARED ${LIBS} EXPORTS ${CLIENT_API_FUNCTIONS}
144 COMPONENT Embedded)144 COMPONENT Embedded)
145ENDIF()145ENDIF()
146
147OPTION(WITH_EMBEDDED_SHARED_LIBRARY
148 "Generate shared version of embedded library (in addition to the static one)"
149 OFF)
150IF(WITH_EMBEDDED_SHARED_LIBRARY)
151 MERGE_LIBRARIES(libmysqld SHARED
152 mysqlserver
153 EXPORTS ${CLIENT_API_FUNCTIONS}
154 OUTPUT_NAME "mysqld"
155 COMPONENT Embedded)
156 SET_TARGET_PROPERTIES(libmysqld PROPERTIES
157 VERSION "${SHARED_LIB_MAJOR_VERSION}.${SHARED_LIB_MINOR_VERSION}.0"
158 SOVERSION "${SHARED_LIB_MAJOR_VERSION}"
159 )
160
161 GET_TARGET_PROPERTY(libmysqld_link_flags libmysqld LINK_FLAGS)
162 IF(NOT libmysqld_link_flag)
163 SET(libmysqld_link_flags)
164 ENDIF()
165 SET(libmysqld_link_flags
166 "${CMAKE_SHARED_LIBRARY_C_FLAGS} ${libmysqld_link_flags}")
167 SET_TARGET_PROPERTIES(libmysqld
168 PROPERTIES LINK_FLAGS "${libmysqld_link_flags}")
169
170 IF(LINK_FLAG_NO_UNDEFINED)
171 SET(libmysqld_link_flags
172 "${libmysqld_link_flags} ${LINK_FLAG_NO_UNDEFINED}")
173 SET_TARGET_PROPERTIES(libmysqld
174 PROPERTIES LINK_FLAGS "${libmysqld_link_flags}")
175 ENDIF()
176
177 SET_TARGET_PROPERTIES(libmysqld PROPERTIES CLEAN_DIRECT_OUTPUT 1)
178 SET_TARGET_PROPERTIES(mysqlserver PROPERTIES CLEAN_DIRECT_OUTPUT 1)
179ENDIF()
146180
=== modified file 'libmysqld/examples/test-run'
--- libmysqld/examples/test-run 2013-03-20 16:52:15 +0000
+++ libmysqld/examples/test-run 2014-03-27 17:18:17 +0000
@@ -1,6 +1,7 @@
1#! /bin/sh1#! /bin/sh
22
3# Copyright (C) 2001, 2006 MySQL AB3# Copyright (C) 2001, 2006 MySQL AB
4# Use is subject to license terms
4#5#
5# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
78
=== modified file 'man/comp_err.1'
--- man/comp_err.1 2014-02-03 04:39:37 +0000
+++ man/comp_err.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBcomp_err\fR2.\" Title: \fBcomp_err\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBCOMP_ERR\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBCOMP_ERR\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -124,8 +124,8 @@
124Write a debugging log\&. A typical124Write a debugging log\&. A typical
125\fIdebug_options\fR125\fIdebug_options\fR
126string is126string is
127\*(Aqd:t:O,\fIfile_name\fR\*(Aq\&. The default is127d:t:O,\fIfile_name\fR\&. The default is
128\*(Aqd:t:O,/tmp/comp_err\&.trace\*(Aq\&.128d:t:O,/tmp/comp_err\&.trace\&.
129.RE129.RE
130.sp130.sp
131.RS 4131.RS 4
132132
=== modified file 'man/innochecksum.1'
--- man/innochecksum.1 2014-02-03 04:39:37 +0000
+++ man/innochecksum.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBinnochecksum\fR2.\" Title: \fBinnochecksum\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBINNOCHECKSUM\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBINNOCHECKSUM\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/msql2mysql.1'
--- man/msql2mysql.1 2014-02-03 04:39:37 +0000
+++ man/msql2mysql.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmsql2mysql\fR2.\" Title: \fBmsql2mysql\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMSQL2MYSQL\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMSQL2MYSQL\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/my_print_defaults.1'
--- man/my_print_defaults.1 2014-02-03 04:39:37 +0000
+++ man/my_print_defaults.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmy_print_defaults\fR2.\" Title: \fBmy_print_defaults\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMY_PRINT_DEFAULTS" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMY_PRINT_DEFAULTS" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -115,8 +115,8 @@
115Write a debugging log\&. A typical115Write a debugging log\&. A typical
116\fIdebug_options\fR116\fIdebug_options\fR
117string is117string is
118\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is118d:t:o,\fIfile_name\fR\&. The default is
119\*(Aqd:t:o,/tmp/my_print_defaults\&.trace\*(Aq\&.119d:t:o,/tmp/my_print_defaults\&.trace\&.
120.RE120.RE
121.sp121.sp
122.RS 4122.RS 4
123123
=== modified file 'man/myisam_ftdump.1'
--- man/myisam_ftdump.1 2014-02-03 04:39:37 +0000
+++ man/myisam_ftdump.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmyisam_ftdump\fR2.\" Title: \fBmyisam_ftdump\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYISAM_FTDUMP\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYISAM_FTDUMP\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/myisamchk.1'
--- man/myisamchk.1 2014-02-03 04:39:37 +0000
+++ man/myisamchk.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmyisamchk\fR2.\" Title: \fBmyisamchk\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYISAMCHK\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYISAMCHK\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -308,8 +308,8 @@
308Write a debugging log\&. A typical308Write a debugging log\&. A typical
309\fIdebug_options\fR309\fIdebug_options\fR
310string is310string is
311\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is311d:t:o,\fIfile_name\fR\&. The default is
312\*(Aqd:t:o,/tmp/myisamchk\&.trace\*(Aq\&.312d:t:o,/tmp/myisamchk\&.trace\&.
313.RE313.RE
314.sp314.sp
315.RS 4315.RS 4
316316
=== modified file 'man/myisamlog.1'
--- man/myisamlog.1 2014-02-03 04:39:37 +0000
+++ man/myisamlog.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmyisamlog\fR2.\" Title: \fBmyisamlog\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYISAMLOG\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYISAMLOG\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/myisampack.1'
--- man/myisampack.1 2014-02-03 04:39:37 +0000
+++ man/myisampack.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmyisampack\fR2.\" Title: \fBmyisampack\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYISAMPACK\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYISAMPACK\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -189,8 +189,8 @@
189Write a debugging log\&. A typical189Write a debugging log\&. A typical
190\fIdebug_options\fR190\fIdebug_options\fR
191string is191string is
192\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is192d:t:o,\fIfile_name\fR\&. The default is
193\*(Aqd:t:o\*(Aq\&.193d:t:o\&.
194.RE194.RE
195.sp195.sp
196.RS 4196.RS 4
197197
=== modified file 'man/mysql-stress-test.pl.1'
--- man/mysql-stress-test.pl.1 2014-02-03 04:39:37 +0000
+++ man/mysql-stress-test.pl.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql-stress-test.pl\fR2.\" Title: \fBmysql-stress-test.pl\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/10/20145.\" Date: 03/10/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL7.\" Source: MySQL
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL\-STRESS\-TE" "1" "01/10/2014" "MySQL" "MySQL Database System"10.TH "\FBMYSQL\-STRESS\-TE" "1" "03/10/2014" "MySQL" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql-test-run.pl.1'
--- man/mysql-test-run.pl.1 2014-02-03 04:39:37 +0000
+++ man/mysql-test-run.pl.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql-test-run.pl\fR2.\" Title: \fBmysql-test-run.pl\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/10/20145.\" Date: 03/10/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL7.\" Source: MySQL
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL\-TEST\-RUN\" "1" "01/10/2014" "MySQL" "MySQL Database System"10.TH "\FBMYSQL\-TEST\-RUN\" "1" "03/10/2014" "MySQL" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql.1'
--- man/mysql.1 2014-02-03 04:39:37 +0000
+++ man/mysql.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql\fR2.\" Title: \fBmysql\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -337,8 +337,8 @@
337Write a debugging log\&. A typical337Write a debugging log\&. A typical
338\fIdebug_options\fR338\fIdebug_options\fR
339string is339string is
340\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is340d:t:o,\fIfile_name\fR\&. The default is
341\*(Aqd:t:o,/tmp/mysql\&.trace\*(Aq\&.341d:t:o,/tmp/mysql\&.trace\&.
342.RE342.RE
343.sp343.sp
344.RS 4344.RS 4
@@ -470,7 +470,7 @@
470Enable the470Enable the
471mysql_clear_password471mysql_clear_password
472cleartext authentication plugin\&. (See472cleartext authentication plugin\&. (See
473Section\ \&6.3.6.6, \(lqThe Cleartext Client-Side Authentication Plugin\(rq\&.) This option was added in MySQL 5\&.5\&.27\&.473Section\ \&6.3.7.5, \(lqThe Cleartext Client-Side Authentication Plugin\(rq\&.) This option was added in MySQL 5\&.5\&.27\&.
474.RE474.RE
475.sp475.sp
476.RS 4476.RS 4
@@ -1241,7 +1241,7 @@
1241Options that begin with1241Options that begin with
1242\fB\-\-ssl\fR1242\fB\-\-ssl\fR
1243specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See1243specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See
1244Section\ \&6.3.8.4, \(lqSSL Command Options\(rq\&.1244Section\ \&6.3.9.4, \(lqSSL Command Options\(rq\&.
1245.RE1245.RE
1246.sp1246.sp
1247.RS 41247.RS 4
12481248
=== modified file 'man/mysql.server.1'
--- man/mysql.server.1 2014-02-03 04:39:37 +0000
+++ man/mysql.server.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql.server\fR2.\" Title: \fBmysql.server\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL\&.SERVER\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL\&.SERVER\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -57,7 +57,7 @@
57If you install MySQL from a source distribution or using a binary distribution format that does not install57If you install MySQL from a source distribution or using a binary distribution format that does not install
58\fBmysql\&.server\fR58\fBmysql\&.server\fR
59automatically, you can install it manually\&. Instructions are provided in59automatically, you can install it manually\&. Instructions are provided in
60Section\ \&2.11.1.2, \(lqStarting and Stopping MySQL Automatically\(rq\&.60Section\ \&2.10.1.2, \(lqStarting and Stopping MySQL Automatically\(rq\&.
61.PP61.PP
62\fBmysql\&.server\fR62\fBmysql\&.server\fR
63reads options from the63reads options from the
6464
=== modified file 'man/mysql_client_test.1'
--- man/mysql_client_test.1 2014-02-03 04:39:37 +0000
+++ man/mysql_client_test.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_client_test\fR2.\" Title: \fBmysql_client_test\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/10/20145.\" Date: 03/10/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL7.\" Source: MySQL
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_CLIENT_TEST" "1" "01/10/2014" "MySQL" "MySQL Database System"10.TH "\FBMYSQL_CLIENT_TEST" "1" "03/10/2014" "MySQL" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql_config.1'
--- man/mysql_config.1 2014-02-03 04:39:37 +0000
+++ man/mysql_config.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_config\fR2.\" Title: \fBmysql_config\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_CONFIG\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_CONFIG\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql_convert_table_format.1'
--- man/mysql_convert_table_format.1 2014-02-03 04:39:37 +0000
+++ man/mysql_convert_table_format.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_convert_table_format\fR2.\" Title: \fBmysql_convert_table_format\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_CONVERT_TAB" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_CONVERT_TAB" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -44,7 +44,7 @@
44and44and
45DBD::mysql45DBD::mysql
46Perl modules be installed (see46Perl modules be installed (see
47Section\ \&2.14, \(lqPerl Installation Notes\(rq)\&.47Section\ \&2.13, \(lqPerl Installation Notes\(rq)\&.
48.PP48.PP
49Invoke49Invoke
50\fBmysql_convert_table_format\fR50\fBmysql_convert_table_format\fR
5151
=== modified file 'man/mysql_find_rows.1'
--- man/mysql_find_rows.1 2014-02-03 04:39:37 +0000
+++ man/mysql_find_rows.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_find_rows\fR2.\" Title: \fBmysql_find_rows\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_FIND_ROWS\F" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_FIND_ROWS\F" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql_fix_extensions.1'
--- man/mysql_fix_extensions.1 2014-02-03 04:39:37 +0000
+++ man/mysql_fix_extensions.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_fix_extensions\fR2.\" Title: \fBmysql_fix_extensions\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_FIX_EXTENSI" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_FIX_EXTENSI" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql_install_db.1'
--- man/mysql_install_db.1 2014-02-03 04:39:37 +0000
+++ man/mysql_install_db.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_install_db\fR2.\" Title: \fBmysql_install_db\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_INSTALL_DB\" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_INSTALL_DB\" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql_plugin.1'
--- man/mysql_plugin.1 2014-02-03 04:39:37 +0000
+++ man/mysql_plugin.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_plugin\fR2.\" Title: \fBmysql_plugin\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_PLUGIN\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_PLUGIN\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql_secure_installation.1'
--- man/mysql_secure_installation.1 2014-02-03 04:39:37 +0000
+++ man/mysql_secure_installation.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_secure_installation\fR2.\" Title: \fBmysql_secure_installation\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_SECURE_INST" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_SECURE_INST" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -90,7 +90,7 @@
90.PP90.PP
91\fBmysql_secure_installation\fR91\fBmysql_secure_installation\fR
92helps you implement security recommendations similar to those described at92helps you implement security recommendations similar to those described at
93Section\ \&2.11.2, \(lqSecuring the Initial MySQL Accounts\(rq\&.93Section\ \&2.10.2, \(lqSecuring the Initial MySQL Accounts\(rq\&.
94.PP94.PP
95Invoke95Invoke
96\fBmysql_secure_installation\fR96\fBmysql_secure_installation\fR
9797
=== modified file 'man/mysql_setpermission.1'
--- man/mysql_setpermission.1 2014-02-03 04:39:37 +0000
+++ man/mysql_setpermission.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_setpermission\fR2.\" Title: \fBmysql_setpermission\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_SETPERMISSI" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_SETPERMISSI" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -43,7 +43,7 @@
43and43and
44DBD::mysql44DBD::mysql
45Perl modules be installed (see45Perl modules be installed (see
46Section\ \&2.14, \(lqPerl Installation Notes\(rq)\&.46Section\ \&2.13, \(lqPerl Installation Notes\(rq)\&.
47.PP47.PP
48Invoke48Invoke
49\fBmysql_setpermission\fR49\fBmysql_setpermission\fR
5050
=== modified file 'man/mysql_tzinfo_to_sql.1'
--- man/mysql_tzinfo_to_sql.1 2014-02-03 04:39:37 +0000
+++ man/mysql_tzinfo_to_sql.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_tzinfo_to_sql\fR2.\" Title: \fBmysql_tzinfo_to_sql\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_TZINFO_TO_S" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_TZINFO_TO_S" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql_upgrade.1'
--- man/mysql_upgrade.1 2014-02-03 04:39:37 +0000
+++ man/mysql_upgrade.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_upgrade\fR2.\" Title: \fBmysql_upgrade\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_UPGRADE\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_UPGRADE\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -48,7 +48,7 @@
48If48If
49\fBmysql_upgrade\fR49\fBmysql_upgrade\fR
50finds that a table has a possible incompatibility, it performs a table check and, if problems are found, attempts a table repair\&. If the table cannot be repaired, see50finds that a table has a possible incompatibility, it performs a table check and, if problems are found, attempts a table repair\&. If the table cannot be repaired, see
51Section\ \&2.12.4, \(lqRebuilding or Repairing Tables or Indexes\(rq51Section\ \&2.11.4, \(lqRebuilding or Repairing Tables or Indexes\(rq
52for manual table repair strategies\&.52for manual table repair strategies\&.
53.if n \{\53.if n \{\
54.sp54.sp
@@ -88,7 +88,7 @@
88.PP88.PP
89Some upgrade incompatibilities may require special handling before you upgrade your MySQL installation and run89Some upgrade incompatibilities may require special handling before you upgrade your MySQL installation and run
90\fBmysql_upgrade\fR\&. See90\fBmysql_upgrade\fR\&. See
91Section\ \&2.12.1, \(lqUpgrading MySQL\(rq, for instructions on determining whether any such incompatibilities apply to your installation and how to handle them\&.91Section\ \&2.11.1, \(lqUpgrading MySQL\(rq, for instructions on determining whether any such incompatibilities apply to your installation and how to handle them\&.
92.sp .5v92.sp .5v
93.RE93.RE
94.PP94.PP
@@ -265,6 +265,26 @@
265.sp -1265.sp -1
266.IP \(bu 2.3266.IP \(bu 2.3
267.\}267.\}
268.\" mysql_upgrade: debug option
269.\" debug option: mysql_upgrade
270\fB\-\-debug=\fR\fB\fIdebug_options\fR\fR,
271\fB\-# \fR\fB\fIdebug_options\fR\fR
272.sp
273Write a debugging log\&. A typical
274\fIdebug_options\fR
275string is
276d:t:O,\fIfile_name\fR\&. The default is
277d:t:O,/tmp/mysql_upgrade\&.trace\&.
278.RE
279.sp
280.RS 4
281.ie n \{\
282\h'-04'\(bu\h'+03'\c
283.\}
284.el \{\
285.sp -1
286.IP \(bu 2.3
287.\}
268.\" mysql_upgrade: debug-check option288.\" mysql_upgrade: debug-check option
269.\" debug-check option: mysql_upgrade289.\" debug-check option: mysql_upgrade
270\fB\-\-debug\-check\fR290\fB\-\-debug\-check\fR
271291
=== modified file 'man/mysql_waitpid.1'
--- man/mysql_waitpid.1 2014-02-03 04:39:37 +0000
+++ man/mysql_waitpid.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_waitpid\fR2.\" Title: \fBmysql_waitpid\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_WAITPID\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_WAITPID\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysql_zap.1'
--- man/mysql_zap.1 2014-02-03 04:39:37 +0000
+++ man/mysql_zap.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysql_zap\fR2.\" Title: \fBmysql_zap\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQL_ZAP\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQL_ZAP\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysqlaccess.1'
--- man/mysqlaccess.1 2014-02-03 04:39:37 +0000
+++ man/mysqlaccess.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqlaccess\fR2.\" Title: \fBmysqlaccess\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLACCESS\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLACCESS\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysqladmin.1'
--- man/mysqladmin.1 2014-02-03 04:39:37 +0000
+++ man/mysqladmin.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqladmin\fR2.\" Title: \fBmysqladmin\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLADMIN\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLADMIN\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -715,8 +715,8 @@
715Write a debugging log\&. A typical715Write a debugging log\&. A typical
716\fIdebug_options\fR716\fIdebug_options\fR
717string is717string is
718\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is718d:t:o,\fIfile_name\fR\&. The default is
719\*(Aqd:t:o,/tmp/mysqladmin\&.trace\*(Aq\&.719d:t:o,/tmp/mysqladmin\&.trace\&.
720.RE720.RE
721.sp721.sp
722.RS 4722.RS 4
@@ -800,7 +800,7 @@
800Enable the800Enable the
801mysql_clear_password801mysql_clear_password
802cleartext authentication plugin\&. (See802cleartext authentication plugin\&. (See
803Section\ \&6.3.6.6, \(lqThe Cleartext Client-Side Authentication Plugin\(rq\&.) This option was added in MySQL 5\&.5\&.27\&.803Section\ \&6.3.7.5, \(lqThe Cleartext Client-Side Authentication Plugin\(rq\&.) This option was added in MySQL 5\&.5\&.27\&.
804.RE804.RE
805.sp805.sp
806.RS 4806.RS 4
@@ -1044,7 +1044,7 @@
1044Options that begin with1044Options that begin with
1045\fB\-\-ssl\fR1045\fB\-\-ssl\fR
1046specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See1046specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See
1047Section\ \&6.3.8.4, \(lqSSL Command Options\(rq\&.1047Section\ \&6.3.9.4, \(lqSSL Command Options\(rq\&.
1048.RE1048.RE
1049.sp1049.sp
1050.RS 41050.RS 4
10511051
=== modified file 'man/mysqlbinlog.1'
--- man/mysqlbinlog.1 2014-02-03 04:39:37 +0000
+++ man/mysqlbinlog.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqlbinlog\fR2.\" Title: \fBmysqlbinlog\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLBINLOG\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLBINLOG\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -503,8 +503,8 @@
503Write a debugging log\&. A typical503Write a debugging log\&. A typical
504\fIdebug_options\fR504\fIdebug_options\fR
505string is505string is
506\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is506d:t:o,\fIfile_name\fR\&. The default is
507\*(Aqd:t:o,/tmp/mysqlbinlog\&.trace\*(Aq\&.507d:t:o,/tmp/mysqlbinlog\&.trace\&.
508.RE508.RE
509.sp509.sp
510.RS 4510.RS 4
511511
=== modified file 'man/mysqlbug.1'
--- man/mysqlbug.1 2014-02-03 04:39:37 +0000
+++ man/mysqlbug.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqlbug\fR2.\" Title: \fBmysqlbug\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLBUG\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLBUG\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysqlcheck.1'
--- man/mysqlcheck.1 2014-02-03 04:39:37 +0000
+++ man/mysqlcheck.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqlcheck\fR2.\" Title: \fBmysqlcheck\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLCHECK\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLCHECK\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -110,7 +110,7 @@
110If110If
111\fBmysqlcheck\fR111\fBmysqlcheck\fR
112is unable to repair a table, see112is unable to repair a table, see
113Section\ \&2.12.4, \(lqRebuilding or Repairing Tables or Indexes\(rq113Section\ \&2.11.4, \(lqRebuilding or Repairing Tables or Indexes\(rq
114for manual table repair strategies\&. This will be the case, for example, for114for manual table repair strategies\&. This will be the case, for example, for
115InnoDB115InnoDB
116tables, which can be checked with116tables, which can be checked with
@@ -430,8 +430,8 @@
430Write a debugging log\&. A typical430Write a debugging log\&. A typical
431\fIdebug_options\fR431\fIdebug_options\fR
432string is432string is
433\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is433d:t:o,\fIfile_name\fR\&. The default is
434\*(Aqd:t:o\*(Aq\&.434d:t:o\&.
435.RE435.RE
436.sp436.sp
437.RS 4437.RS 4
@@ -811,7 +811,7 @@
811Options that begin with811Options that begin with
812\fB\-\-ssl\fR812\fB\-\-ssl\fR
813specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See813specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See
814Section\ \&6.3.8.4, \(lqSSL Command Options\(rq\&.814Section\ \&6.3.9.4, \(lqSSL Command Options\(rq\&.
815.RE815.RE
816.sp816.sp
817.RS 4817.RS 4
818818
=== modified file 'man/mysqld.8'
--- man/mysqld.8 2014-02-03 04:39:37 +0000
+++ man/mysqld.8 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqld\fR2.\" Title: \fBmysqld\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLD\FR" "8" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLD\FR" "8" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysqld_multi.1'
--- man/mysqld_multi.1 2014-02-03 04:39:37 +0000
+++ man/mysqld_multi.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqld_multi\fR2.\" Title: \fBmysqld_multi\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLD_MULTI\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLD_MULTI\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -59,7 +59,7 @@
59[mysqld]59[mysqld]
60group used for starting60group used for starting
61\fBmysqld\fR\&. (See, for example,61\fBmysqld\fR\&. (See, for example,
62Section\ \&2.11.1.2, \(lqStarting and Stopping MySQL Automatically\(rq\&.) However, when using multiple servers, it is necessary that each one use its own value for options such as the Unix socket file and TCP/IP port number\&. For more information on which options must be unique per server in a multiple\-server environment, see62Section\ \&2.10.1.2, \(lqStarting and Stopping MySQL Automatically\(rq\&.) However, when using multiple servers, it is necessary that each one use its own value for options such as the Unix socket file and TCP/IP port number\&. For more information on which options must be unique per server in a multiple\-server environment, see
63Section\ \&5.3, \(lqRunning Multiple MySQL Instances on One Machine\(rq\&.63Section\ \&5.3, \(lqRunning Multiple MySQL Instances on One Machine\(rq\&.
64.PP64.PP
65To invoke65To invoke
6666
=== modified file 'man/mysqld_safe.1'
--- man/mysqld_safe.1 2014-02-03 04:39:37 +0000
+++ man/mysqld_safe.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqld_safe\fR2.\" Title: \fBmysqld_safe\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLD_SAFE\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLD_SAFE\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysqldump.1'
--- man/mysqldump.1 2014-02-03 04:39:37 +0000
+++ man/mysqldump.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqldump\fR2.\" Title: \fBmysqldump\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLDUMP\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLDUMP\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -738,8 +738,8 @@
738Write a debugging log\&. A typical738Write a debugging log\&. A typical
739\fIdebug_options\fR739\fIdebug_options\fR
740string is740string is
741\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default value is741d:t:o,\fIfile_name\fR\&. The default value is
742\*(Aqd:t:o,/tmp/mysqldump\&.trace\*(Aq\&.742d:t:o,/tmp/mysqldump\&.trace\&.
743.RE743.RE
744.sp744.sp
745.RS 4745.RS 4
@@ -2043,7 +2043,7 @@
2043Options that begin with2043Options that begin with
2044\fB\-\-ssl\fR2044\fB\-\-ssl\fR
2045specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See2045specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See
2046Section\ \&6.3.8.4, \(lqSSL Command Options\(rq\&.2046Section\ \&6.3.9.4, \(lqSSL Command Options\(rq\&.
2047.RE2047.RE
2048.sp2048.sp
2049.RS 42049.RS 4
20502050
=== modified file 'man/mysqldumpslow.1'
--- man/mysqldumpslow.1 2014-02-03 04:39:37 +0000
+++ man/mysqldumpslow.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqldumpslow\fR2.\" Title: \fBmysqldumpslow\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLDUMPSLOW\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLDUMPSLOW\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysqlhotcopy.1'
--- man/mysqlhotcopy.1 2014-02-03 04:39:37 +0000
+++ man/mysqlhotcopy.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqlhotcopy\fR2.\" Title: \fBmysqlhotcopy\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLHOTCOPY\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLHOTCOPY\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/mysqlimport.1'
--- man/mysqlimport.1 2014-02-03 04:39:37 +0000
+++ man/mysqlimport.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqlimport\fR2.\" Title: \fBmysqlimport\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLIMPORT\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLIMPORT\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -182,8 +182,8 @@
182Write a debugging log\&. A typical182Write a debugging log\&. A typical
183\fIdebug_options\fR183\fIdebug_options\fR
184string is184string is
185\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is185d:t:o,\fIfile_name\fR\&. The default is
186\*(Aqd:t:o\*(Aq\&.186d:t:o\&.
187.RE187.RE
188.sp188.sp
189.RS 4189.RS 4
@@ -606,7 +606,7 @@
606Options that begin with606Options that begin with
607\fB\-\-ssl\fR607\fB\-\-ssl\fR
608specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See608specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See
609Section\ \&6.3.8.4, \(lqSSL Command Options\(rq\&.609Section\ \&6.3.9.4, \(lqSSL Command Options\(rq\&.
610.RE610.RE
611.sp611.sp
612.RS 4612.RS 4
613613
=== modified file 'man/mysqlshow.1'
--- man/mysqlshow.1 2014-02-03 04:39:37 +0000
+++ man/mysqlshow.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqlshow\fR2.\" Title: \fBmysqlshow\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLSHOW\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLSHOW\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -229,8 +229,8 @@
229Write a debugging log\&. A typical229Write a debugging log\&. A typical
230\fIdebug_options\fR230\fIdebug_options\fR
231string is231string is
232\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is232d:t:o,\fIfile_name\fR\&. The default is
233\*(Aqd:t:o\*(Aq\&.233d:t:o\&.
234.RE234.RE
235.sp235.sp
236.RS 4236.RS 4
@@ -482,7 +482,7 @@
482Options that begin with482Options that begin with
483\fB\-\-ssl\fR483\fB\-\-ssl\fR
484specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See484specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See
485Section\ \&6.3.8.4, \(lqSSL Command Options\(rq\&.485Section\ \&6.3.9.4, \(lqSSL Command Options\(rq\&.
486.RE486.RE
487.sp487.sp
488.RS 4488.RS 4
489489
=== modified file 'man/mysqlslap.1'
--- man/mysqlslap.1 2014-02-03 04:39:37 +0000
+++ man/mysqlslap.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqlslap\fR2.\" Title: \fBmysqlslap\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLSLAP\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBMYSQLSLAP\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -466,8 +466,8 @@
466Write a debugging log\&. A typical466Write a debugging log\&. A typical
467\fIdebug_options\fR467\fIdebug_options\fR
468string is468string is
469\*(Aqd:t:o,\fIfile_name\fR\*(Aq\&. The default is469d:t:o,\fIfile_name\fR\&. The default is
470\*(Aqd:t:o,/tmp/mysqlslap\&.trace\*(Aq\&.470d:t:o,/tmp/mysqlslap\&.trace\&.
471.RE471.RE
472.sp472.sp
473.RS 4473.RS 4
@@ -567,7 +567,7 @@
567Enable the567Enable the
568mysql_clear_password568mysql_clear_password
569cleartext authentication plugin\&. (See569cleartext authentication plugin\&. (See
570Section\ \&6.3.6.6, \(lqThe Cleartext Client-Side Authentication Plugin\(rq\&.) This option was added in MySQL 5\&.5\&.27\&.570Section\ \&6.3.7.5, \(lqThe Cleartext Client-Side Authentication Plugin\(rq\&.) This option was added in MySQL 5\&.5\&.27\&.
571.RE571.RE
572.sp572.sp
573.RS 4573.RS 4
@@ -966,7 +966,7 @@
966Options that begin with966Options that begin with
967\fB\-\-ssl\fR967\fB\-\-ssl\fR
968specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See968specify whether to connect to the server using SSL and indicate where to find SSL keys and certificates\&. See
969Section\ \&6.3.8.4, \(lqSSL Command Options\(rq\&.969Section\ \&6.3.9.4, \(lqSSL Command Options\(rq\&.
970.RE970.RE
971.sp971.sp
972.RS 4972.RS 4
973973
=== modified file 'man/mysqltest.1'
--- man/mysqltest.1 2014-02-03 04:39:37 +0000
+++ man/mysqltest.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBmysqltest\fR2.\" Title: \fBmysqltest\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/10/20145.\" Date: 03/10/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL7.\" Source: MySQL
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBMYSQLTEST\FR" "1" "01/10/2014" "MySQL" "MySQL Database System"10.TH "\FBMYSQLTEST\FR" "1" "03/10/2014" "MySQL" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb-common-options.1'
--- man/ndb-common-options.1 2014-02-03 04:39:37 +0000
+++ man/ndb-common-options.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: Options Common to MySQL Cluster Programs2.\" Title: Options Common to MySQL Cluster Programs
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "OPTIONS COMMON TO MY" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "OPTIONS COMMON TO MY" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_blob_tool.1'
--- man/ndb_blob_tool.1 2014-02-03 04:39:37 +0000
+++ man/ndb_blob_tool.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_blob_tool\fR2.\" Title: \fBndb_blob_tool\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_BLOB_TOOL\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_BLOB_TOOL\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_config.1'
--- man/ndb_config.1 2014-02-03 04:39:37 +0000
+++ man/ndb_config.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_config\fR2.\" Title: \fBndb_config\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_CONFIG\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_CONFIG\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -904,6 +904,7 @@
904:T{904:T{
905\fBDefault\fR905\fBDefault\fR
906T}:T{906T}:T{
907[none]
907T}908T}
908:T{909:T{
909\fBValid Values\fR910\fBValid Values\fR
@@ -1229,7 +1230,7 @@
1229.\}1230.\}
1230.nf1231.nf
1231shell> \fBndb_config \-\-configinfo \-\-xml\fR1232shell> \fBndb_config \-\-configinfo \-\-xml\fR
1232<configvariables protocolversion="1" ndbversionstring="5\&.5\&.34\-ndb\-7\&.2\&.15"1233<configvariables protocolversion="1" ndbversionstring="5\&.5\&.36\-ndb\-7\&.2\&.16"
1233 ndbversion="458758" ndbversionmajor="7" ndbversionminor="0"1234 ndbversion="458758" ndbversionmajor="7" ndbversionminor="0"
1234 ndbversionbuild="6">1235 ndbversionbuild="6">
1235 <section name="SYSTEM">1236 <section name="SYSTEM">
12361237
=== modified file 'man/ndb_cpcd.1'
--- man/ndb_cpcd.1 2014-02-03 04:39:37 +0000
+++ man/ndb_cpcd.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_cpcd\fR2.\" Title: \fBndb_cpcd\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_CPCD\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_CPCD\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_delete_all.1'
--- man/ndb_delete_all.1 2014-02-03 04:39:37 +0000
+++ man/ndb_delete_all.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_delete_all\fR2.\" Title: \fBndb_delete_all\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_DELETE_ALL\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_DELETE_ALL\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_desc.1'
--- man/ndb_desc.1 2014-02-03 04:39:37 +0000
+++ man/ndb_desc.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_desc\fR2.\" Title: \fBndb_desc\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_DESC\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_DESC\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_drop_index.1'
--- man/ndb_drop_index.1 2014-02-03 04:39:37 +0000
+++ man/ndb_drop_index.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_drop_index\fR2.\" Title: \fBndb_drop_index\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_DROP_INDEX\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_DROP_INDEX\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -123,7 +123,7 @@
123Reading table information for completion of table and column names123Reading table information for completion of table and column names
124You can turn off this feature to get a quicker startup with \-A124You can turn off this feature to get a quicker startup with \-A
125Welcome to the MySQL monitor\&. Commands end with ; or \eg\&.125Welcome to the MySQL monitor\&. Commands end with ; or \eg\&.
126Your MySQL connection id is 7 to server version: 5\&.5\&.34\-ndb\-7\&.2\&.15126Your MySQL connection id is 7 to server version: 5\&.5\&.36\-ndb\-7\&.2\&.16
127Type \*(Aqhelp;\*(Aq or \*(Aq\eh\*(Aq for help\&. Type \*(Aq\ec\*(Aq to clear the buffer\&.127Type \*(Aqhelp;\*(Aq or \*(Aq\eh\*(Aq for help\&. Type \*(Aq\ec\*(Aq to clear the buffer\&.
128mysql> \fBSHOW TABLES;\fR128mysql> \fBSHOW TABLES;\fR
129+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+129+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+
130130
=== modified file 'man/ndb_drop_table.1'
--- man/ndb_drop_table.1 2014-02-03 04:39:37 +0000
+++ man/ndb_drop_table.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_drop_table\fR2.\" Title: \fBndb_drop_table\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_DROP_TABLE\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_DROP_TABLE\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_error_reporter.1'
--- man/ndb_error_reporter.1 2014-02-03 04:39:37 +0000
+++ man/ndb_error_reporter.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_error_reporter\fR2.\" Title: \fBndb_error_reporter\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_ERROR_REPORTE" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_ERROR_REPORTE" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_index_stat.1'
--- man/ndb_index_stat.1 2014-02-03 04:39:37 +0000
+++ man/ndb_index_stat.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_index_stat\fR2.\" Title: \fBndb_index_stat\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_INDEX_STAT\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_INDEX_STAT\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_mgm.1'
--- man/ndb_mgm.1 2014-02-03 04:39:37 +0000
+++ man/ndb_mgm.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_mgm\fR2.\" Title: \fBndb_mgm\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_MGM\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_MGM\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_mgmd.8'
--- man/ndb_mgmd.8 2014-02-03 04:39:37 +0000
+++ man/ndb_mgmd.8 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_mgmd\fR2.\" Title: \fBndb_mgmd\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_MGMD\FR" "8" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_MGMD\FR" "8" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_print_backup_file.1'
--- man/ndb_print_backup_file.1 2014-02-03 04:39:37 +0000
+++ man/ndb_print_backup_file.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_print_backup_file\fR2.\" Title: \fBndb_print_backup_file\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_PRINT_BACKUP_" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_PRINT_BACKUP_" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_print_schema_file.1'
--- man/ndb_print_schema_file.1 2014-02-03 04:39:37 +0000
+++ man/ndb_print_schema_file.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_print_schema_file\fR2.\" Title: \fBndb_print_schema_file\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_PRINT_SCHEMA_" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_PRINT_SCHEMA_" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_print_sys_file.1'
--- man/ndb_print_sys_file.1 2014-02-03 04:39:37 +0000
+++ man/ndb_print_sys_file.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_print_sys_file\fR2.\" Title: \fBndb_print_sys_file\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_PRINT_SYS_FIL" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_PRINT_SYS_FIL" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_restore.1'
--- man/ndb_restore.1 2014-02-03 04:39:37 +0000
+++ man/ndb_restore.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_restore\fR2.\" Title: \fBndb_restore\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_RESTORE\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_RESTORE\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_select_all.1'
--- man/ndb_select_all.1 2014-02-03 04:39:37 +0000
+++ man/ndb_select_all.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_select_all\fR2.\" Title: \fBndb_select_all\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_SELECT_ALL\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_SELECT_ALL\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_select_count.1'
--- man/ndb_select_count.1 2014-02-03 04:39:37 +0000
+++ man/ndb_select_count.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_select_count\fR2.\" Title: \fBndb_select_count\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_SELECT_COUNT\" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_SELECT_COUNT\" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_show_tables.1'
--- man/ndb_show_tables.1 2014-02-03 04:39:37 +0000
+++ man/ndb_show_tables.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_show_tables\fR2.\" Title: \fBndb_show_tables\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_SHOW_TABLES\F" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_SHOW_TABLES\F" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_size.pl.1'
--- man/ndb_size.pl.1 2014-02-03 04:39:37 +0000
+++ man/ndb_size.pl.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_size.pl\fR2.\" Title: \fBndb_size.pl\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_SIZE\&.PL\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_SIZE\&.PL\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndb_waiter.1'
--- man/ndb_waiter.1 2014-02-03 04:39:37 +0000
+++ man/ndb_waiter.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndb_waiter\fR2.\" Title: \fBndb_waiter\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDB_WAITER\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDB_WAITER\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndbd.8'
--- man/ndbd.8 2014-02-03 04:39:37 +0000
+++ man/ndbd.8 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndbd\fR2.\" Title: \fBndbd\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDBD\FR" "8" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDBD\FR" "8" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndbd_redo_log_reader.1'
--- man/ndbd_redo_log_reader.1 2014-02-03 04:39:37 +0000
+++ man/ndbd_redo_log_reader.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndbd_redo_log_reader\fR2.\" Title: \fBndbd_redo_log_reader\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDBD_REDO_LOG_REA" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDBD_REDO_LOG_REA" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
@@ -213,7 +213,7 @@
213T{213T{
214\fBIntroduced\fR214\fBIntroduced\fR
215T}:T{215T}:T{
2165\&.5\&.34\-ndb\-7\&.2\&.152165\&.5\&.35\-ndb\-7\&.2\&.15
217T}217T}
218T{218T{
219\fBCommand\-Line Format\fR219\fBCommand\-Line Format\fR
220220
=== modified file 'man/ndbinfo_select_all.1'
--- man/ndbinfo_select_all.1 2014-02-03 04:39:37 +0000
+++ man/ndbinfo_select_all.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndbinfo_select_all\fR2.\" Title: \fBndbinfo_select_all\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDBINFO_SELECT_AL" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDBINFO_SELECT_AL" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/ndbmtd.8'
--- man/ndbmtd.8 2014-02-03 04:39:37 +0000
+++ man/ndbmtd.8 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBndbmtd\fR2.\" Title: \fBndbmtd\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBNDBMTD\FR" "8" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBNDBMTD\FR" "8" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/perror.1'
--- man/perror.1 2014-02-03 04:39:37 +0000
+++ man/perror.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBperror\fR2.\" Title: \fBperror\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBPERROR\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBPERROR\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/replace.1'
--- man/replace.1 2014-02-03 04:39:37 +0000
+++ man/replace.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBreplace\fR2.\" Title: \fBreplace\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBREPLACE\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBREPLACE\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/resolve_stack_dump.1'
--- man/resolve_stack_dump.1 2014-02-03 04:39:37 +0000
+++ man/resolve_stack_dump.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBresolve_stack_dump\fR2.\" Title: \fBresolve_stack_dump\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBRESOLVE_STACK_DUM" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBRESOLVE_STACK_DUM" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'man/resolveip.1'
--- man/resolveip.1 2014-02-03 04:39:37 +0000
+++ man/resolveip.1 2014-03-27 17:18:17 +0000
@@ -2,12 +2,12 @@
2.\" Title: \fBresolveip\fR2.\" Title: \fBresolveip\fR
3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]3.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>4.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
5.\" Date: 01/13/20145.\" Date: 03/14/2014
6.\" Manual: MySQL Database System6.\" Manual: MySQL Database System
7.\" Source: MySQL 5.57.\" Source: MySQL 5.5
8.\" Language: English8.\" Language: English
9.\"9.\"
10.TH "\FBRESOLVEIP\FR" "1" "01/13/2014" "MySQL 5\&.5" "MySQL Database System"10.TH "\FBRESOLVEIP\FR" "1" "03/14/2014" "MySQL 5\&.5" "MySQL Database System"
11.\" -----------------------------------------------------------------11.\" -----------------------------------------------------------------
12.\" * Define some portability stuff12.\" * Define some portability stuff
13.\" -----------------------------------------------------------------13.\" -----------------------------------------------------------------
1414
=== modified file 'mysql-test/include/default_my.cnf'
--- mysql-test/include/default_my.cnf 2013-02-26 05:35:17 +0000
+++ mysql-test/include/default_my.cnf 2014-03-27 17:18:17 +0000
@@ -1,4 +1,5 @@
1# Copyright (c) 2007 MySQL AB, 2009, 2010 Sun Microsystems, Inc.1# Copyright (c) 2007 MySQL AB, 2009, 2010 Sun Microsystems, Inc.
2# Use is subject to license terms
2#3#
3# This program is free software; you can redistribute it and/or modify4# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by5# it under the terms of the GNU General Public License as published by
56
=== modified file 'mysql-test/include/have_perfschema.inc'
--- mysql-test/include/have_perfschema.inc 2013-03-19 14:53:48 +0000
+++ mysql-test/include/have_perfschema.inc 2014-03-27 17:18:17 +0000
@@ -1,4 +1,5 @@
1# Copyright (C) 2010 Sun Microsystems, Inc.1# Copyright (C) 2010 Sun Microsystems, Inc.
2# Use is subject to license terms
2#3#
3# This program is free software; you can redistribute it and/or modify4# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by5# it under the terms of the GNU General Public License as published by
56
=== modified file 'mysql-test/lib/mtr_match.pm'
--- mysql-test/lib/mtr_match.pm 2013-02-26 05:35:17 +0000
+++ mysql-test/lib/mtr_match.pm 2014-03-27 17:18:17 +0000
@@ -1,5 +1,6 @@
1# -*- cperl -*-1# -*- cperl -*-
2# Copyright (C) 2004-2008 MySQL AB2# Copyright (C) 2004-2008 MySQL AB
3# Use is subject to license terms
3# 4#
4# This program is free software; you can redistribute it and/or modify5# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by6# it under the terms of the GNU General Public License as published by
67
=== modified file 'mysql-test/mysql-test-run.pl'
--- mysql-test/mysql-test-run.pl 2014-02-14 07:44:36 +0000
+++ mysql-test/mysql-test-run.pl 2014-03-27 17:18:17 +0000
@@ -1,7 +1,7 @@
1#!/usr/bin/perl1#!/usr/bin/perl
2# -*- cperl -*-2# -*- cperl -*-
33
4# Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.4# Copyright (c) 2004, 2014, Oracle and/or its affiliates. All rights reserved.
5#5#
6# This program is free software; you can redistribute it and/or modify6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by7# it under the terms of the GNU General Public License as published by
@@ -419,7 +419,6 @@
419 );419 );
420 mtr_error("Could not create testcase server port: $!") unless $server;420 mtr_error("Could not create testcase server port: $!") unless $server;
421 my $server_port = $server->sockport();421 my $server_port = $server->sockport();
422 mtr_report("Using server port $server_port");
423422
424 if ($opt_resfile) {423 if ($opt_resfile) {
425 resfile_init("$opt_vardir/mtr-results.txt");424 resfile_init("$opt_vardir/mtr-results.txt");
@@ -477,15 +476,17 @@
477 # Send Ctrl-C to any children still running476 # Send Ctrl-C to any children still running
478 kill("INT", keys(%children));477 kill("INT", keys(%children));
479478
480 # Wait for childs to exit479 if (!IS_WINDOWS) {
481 foreach my $pid (keys %children)480 # Wait for children to exit
482 {481 foreach my $pid (keys %children)
483 my $ret_pid= waitpid($pid, 0);482 {
484 if ($ret_pid != $pid){483 my $ret_pid= waitpid($pid, 0);
485 mtr_report("Unknown process $ret_pid exited");484 if ($ret_pid != $pid){
486 }485 mtr_report("Unknown process $ret_pid exited");
487 else {486 }
488 delete $children{$ret_pid};487 else {
488 delete $children{$ret_pid};
489 }
489 }490 }
490 }491 }
491492
492493
=== modified file 'mysql-test/purify.supp'
--- mysql-test/purify.supp 2013-03-19 14:53:48 +0000
+++ mysql-test/purify.supp 2014-03-27 17:18:17 +0000
@@ -1,4 +1,5 @@
1# Copyright (C) 2005, 2007 MySQL AB1# Copyright (C) 2005, 2007 MySQL AB
2# Use is subject to license terms
2#3#
3# This program is free software; you can redistribute it and/or4# This program is free software; you can redistribute it and/or
4# modify it under the terms of the GNU Library General Public5# modify it under the terms of the GNU Library General Public
56
=== modified file 'mysql-test/r/parser.result'
--- mysql-test/r/parser.result 2010-09-07 06:45:00 +0000
+++ mysql-test/r/parser.result 2014-03-27 17:18:17 +0000
@@ -622,3 +622,28 @@
622#622#
623# End of 5.1 tests623# End of 5.1 tests
624#624#
625#
626# Bug#17075846 : unquoted file names for variable values are
627# accepted but parsed incorrectly
628#
629SET default_storage_engine=a.myisam;
630ERROR 42000: Incorrect argument type to variable 'default_storage_engine'
631SET default_storage_engine = .a.MyISAM;
632ERROR 42000: Incorrect argument type to variable 'default_storage_engine'
633SET default_storage_engine = a.b.MyISAM;
634ERROR 42000: Incorrect argument type to variable 'default_storage_engine'
635SET default_storage_engine = `a`.MyISAM;
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches