Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
external_boringssl
Commits
771d6ac9
Commit
771d6ac9
authored
10 years ago
by
Adam Langley
Committed by
Android Git Automerger
10 years ago
Browse files
Options
Download
Plain Diff
am
12addf8c
: external/boringssl: fix |SSLeay|.
* commit '
12addf8c
': external/boringssl: fix |SSLeay|.
parents
30598360
12addf8c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
src/crypto/crypto.c
src/crypto/crypto.c
+3
-3
src/include/openssl/crypto.h
src/include/openssl/crypto.h
+3
-2
No files found.
src/crypto/crypto.c
View file @
771d6ac9
...
...
@@ -104,9 +104,9 @@ void CRYPTO_library_init(void) {
}
const
char
*
SSLeay_version
(
int
unused
)
{
return
SSLeay
()
;
return
"BoringSSL"
;
}
const
char
*
SSLeay
(
void
)
{
return
"BoringSSL"
;
unsigned
long
SSLeay
(
void
)
{
return
OPENSSL_VERSION_NUMBER
;
}
This diff is collapsed.
Click to expand it.
src/include/openssl/crypto.h
View file @
771d6ac9
...
...
@@ -46,8 +46,9 @@ OPENSSL_EXPORT void CRYPTO_library_init(void);
* "BoringSSL". */
OPENSSL_EXPORT
const
char
*
SSLeay_version
(
int
unused
);
/* SSLeay is a compatibility function that returns the string "BoringSSL". */
OPENSSL_EXPORT
const
char
*
SSLeay
(
void
);
/* SSLeay is a compatibility function that returns OPENSSL_VERSION_NUMBER from
* base.h. */
OPENSSL_EXPORT
unsigned
long
SSLeay
(
void
);
#if defined(__cplusplus)
...
...
This diff is collapsed.
Click to expand it.
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