Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
4d1de5b6
Commit
4d1de5b6
authored
May 20, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/svoj/devel/mysql/mysql-5.0-build
into mysql.com:/mnt/archive/svoj/mysql/mysql-5.0
parents
8b31de23
9aff64b6
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
12 additions
and
16 deletions
+12
-16
extra/yassl/include/buffer.hpp
extra/yassl/include/buffer.hpp
+1
-1
extra/yassl/include/log.hpp
extra/yassl/include/log.hpp
+1
-1
extra/yassl/include/socket_wrapper.hpp
extra/yassl/include/socket_wrapper.hpp
+1
-1
extra/yassl/mySTL/helpers.hpp
extra/yassl/mySTL/helpers.hpp
+1
-1
extra/yassl/mySTL/stdexcept.hpp
extra/yassl/mySTL/stdexcept.hpp
+1
-1
extra/yassl/mySTL/vector.hpp
extra/yassl/mySTL/vector.hpp
+1
-1
extra/yassl/src/ssl.cpp
extra/yassl/src/ssl.cpp
+1
-1
extra/yassl/taocrypt/include/block.hpp
extra/yassl/taocrypt/include/block.hpp
+1
-5
extra/yassl/taocrypt/include/file.hpp
extra/yassl/taocrypt/include/file.hpp
+1
-1
extra/yassl/taocrypt/include/integer.hpp
extra/yassl/taocrypt/include/integer.hpp
+1
-1
extra/yassl/taocrypt/include/runtime.hpp
extra/yassl/taocrypt/include/runtime.hpp
+1
-1
extra/yassl/taocrypt/src/dh.cpp
extra/yassl/taocrypt/src/dh.cpp
+1
-1
No files found.
extra/yassl/include/buffer.hpp
View file @
4d1de5b6
...
...
@@ -27,7 +27,7 @@
#ifndef yaSSL_BUFFER_HPP
#define yaSSL_BUFFER_HPP
#include <
cassert>
// assert
#include <
assert.h>
// assert
#include "yassl_error.hpp" // Error
#include "memory.hpp" // mySTL::auto_ptr
#include "algorithm.hpp" // mySTL::swap
...
...
extra/yassl/include/log.hpp
View file @
4d1de5b6
...
...
@@ -30,7 +30,7 @@
#include "socket_wrapper.hpp"
#ifdef YASSL_LOG
#include <
cstdio
>
#include <
stdio.h
>
#endif
namespace
yaSSL
{
...
...
extra/yassl/include/socket_wrapper.hpp
View file @
4d1de5b6
...
...
@@ -29,7 +29,7 @@
#ifndef yaSSL_SOCKET_WRAPPER_HPP
#define yaSSL_SOCKET_WRAPPER_HPP
#include <
cassert
>
#include <
assert.h
>
#ifdef WIN32
#include <winsock2.h>
...
...
extra/yassl/mySTL/helpers.hpp
View file @
4d1de5b6
...
...
@@ -27,7 +27,7 @@
#ifndef mySTL_HELPERS_HPP
#define mySTL_HELPERS_HPP
#include <
cstdlib
>
#include <
stdlib.h
>
namespace
mySTL
{
...
...
extra/yassl/mySTL/stdexcept.hpp
View file @
4d1de5b6
...
...
@@ -28,7 +28,7 @@
#define mySTL_STDEXCEPT_HPP
#include <
cstring
> // strncpy
#include <
string.h
> // strncpy
namespace
mySTL
{
...
...
extra/yassl/mySTL/vector.hpp
View file @
4d1de5b6
...
...
@@ -31,7 +31,7 @@
#include "helpers.hpp" // construct, destory, fill, etc.
#include "algorithm.hpp" // swap
#include <new> // ::operator new and delete, placement too
#include <
cassert>
// assert
#include <
assert.h>
// assert
namespace
mySTL
{
...
...
extra/yassl/src/ssl.cpp
View file @
4d1de5b6
...
...
@@ -36,7 +36,7 @@
#include "openssl/ssl.h"
#include "handshake.hpp"
#include "yassl_int.hpp"
#include <
cstdio
>
#include <
stdio.h
>
namespace
yaSSL
{
...
...
extra/yassl/taocrypt/include/block.hpp
View file @
4d1de5b6
...
...
@@ -31,7 +31,7 @@
#include "stdexcept.hpp" // mySTL::runtime_error
#include "misc.hpp"
#include <string.h> // memcpy
#include <
cstddef>
// ptrdiff_t
#include <
stddef.h>
// ptrdiff_t
#if defined(_MSC_VER) && defined(_CRTAPI1)
...
...
@@ -49,11 +49,7 @@ class AllocatorBase
public:
typedef
T
value_type
;
typedef
size_t
size_type
;
#ifdef TAOCRYPT_MSVCRT6
typedef
ptrdiff_t
difference_type
;
#else
typedef
std
::
ptrdiff_t
difference_type
;
#endif
typedef
T
*
pointer
;
typedef
const
T
*
const_pointer
;
typedef
T
&
reference
;
...
...
extra/yassl/taocrypt/include/file.hpp
View file @
4d1de5b6
...
...
@@ -29,7 +29,7 @@
#include "misc.hpp"
#include "block.hpp"
#include "error.hpp"
#include <
cstdio
>
#include <
stdio.h
>
namespace
TaoCrypt
{
...
...
extra/yassl/taocrypt/include/integer.hpp
View file @
4d1de5b6
...
...
@@ -29,7 +29,7 @@
#include "block.hpp"
#include "random.hpp"
#include "file.hpp"
#include <
cstring
>
#include <
string.h
>
#include "algorithm.hpp" // mySTL::swap
...
...
extra/yassl/taocrypt/include/runtime.hpp
View file @
4d1de5b6
...
...
@@ -31,7 +31,7 @@
#if __GNUC__ > 2
#include <
cstdlib
>
#include <
stdlib.h
>
static
void
*
operator
new
(
size_t
sz
)
...
...
extra/yassl/taocrypt/src/dh.cpp
View file @
4d1de5b6
...
...
@@ -26,7 +26,7 @@
#include "runtime.hpp"
#include "dh.hpp"
#include "asn.hpp"
#include <
cmat
h>
#include <
math.
h>
namespace
TaoCrypt
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment