Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Menu
Open sidebar
NTPsec
ntpsec
Commits
384f6bab
Commit
384f6bab
authored
Jan 28, 2017
by
Matt Selsky
Browse files
OpenSSL headers are external to the project so use <> syntax to look for them
parent
eacc23c1
Changes
7
Hide whitespace changes
Inline
Side-by-side
libntp/a_md5encrypt.c
View file @
384f6bab
...
...
@@ -8,7 +8,7 @@
#include
<stdbool.h>
#include
<stdint.h>
#include
"
openssl/evp.h
"
/* provides OpenSSL digest API */
#include
<
openssl/evp.h
>
/* provides OpenSSL digest API */
#include
"ntp_fp.h"
#include
"ntp_stdlib.h"
...
...
libntp/authreadkeys.c
View file @
384f6bab
...
...
@@ -10,8 +10,8 @@
#include
"ntp_syslog.h"
#include
"ntp_stdlib.h"
#include
"
openssl/objects.h
"
#include
"
openssl/evp.h
"
#include
<
openssl/objects.h
>
#include
<
openssl/evp.h
>
/* Forwards */
static
char
*
nexttok
(
char
**
);
...
...
libntp/ssl_init.c
View file @
384f6bab
...
...
@@ -13,8 +13,8 @@
#include
<ntp_debug.h>
#include
<lib_strbuf.h>
#include
"
openssl/err.h
"
#include
"
openssl/evp.h
"
#include
<
openssl/err.h
>
#include
<
openssl/evp.h
>
void
atexit_ssl_cleanup
(
void
);
...
...
ntpd/ntp_control.c
View file @
384f6bab
...
...
@@ -11,7 +11,7 @@
#include
<netinet/in.h>
#include
<arpa/inet.h>
#include
"
openssl/evp.h
"
/* provides OpenSSL digest API */
#include
<
openssl/evp.h
>
/* provides OpenSSL digest API */
#include
"ntpd.h"
#include
"ntp_io.h"
...
...
tests/libntp/a_md5encrypt.c
View file @
384f6bab
...
...
@@ -11,9 +11,9 @@ TEST_SETUP(a_md5encrypt) {}
TEST_TEAR_DOWN
(
a_md5encrypt
)
{}
#
include
"
openssl/err.h
"
#
include
"
openssl/rand.h
"
#
include
"
openssl/evp.h
"
#include
<
openssl/err.h
>
#include
<
openssl/rand.h
>
#include
<
openssl/evp.h
>
#include
"ntp.h"
...
...
tests/libntp/authkeys.c
View file @
384f6bab
...
...
@@ -5,9 +5,9 @@
#include
"unity_fixture.h"
#
include
"
openssl/err.h
"
#
include
"
openssl/rand.h
"
#
include
"
openssl/evp.h
"
#include
<
openssl/err.h
>
#include
<
openssl/rand.h
>
#include
<
openssl/evp.h
>
#include
"ntp.h"
...
...
tests/libntp/ssl_init.c
View file @
384f6bab
...
...
@@ -12,9 +12,9 @@ TEST_SETUP(ssl_init) {}
TEST_TEAR_DOWN
(
ssl_init
)
{}
#
include
"
openssl/err.h
"
#
include
"
openssl/rand.h
"
#
include
"
openssl/evp.h
"
#include
<
openssl/err.h
>
#include
<
openssl/rand.h
>
#include
<
openssl/evp.h
>
#include
"ntp.h"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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