diff options
| author | jsing <> | 2016-09-04 13:17:08 +0000 | 
|---|---|---|
| committer | jsing <> | 2016-09-04 13:17:08 +0000 | 
| commit | 737bf9a0bb2f6d9ec8e2904ba8a58487040261cb (patch) | |
| tree | 3f5618be446266245a2a4ee3f25b275c2e2f3a51 | |
| parent | 360b14e3ae09f1204f710d42267fcb174aa6b630 (diff) | |
| download | openbsd-737bf9a0bb2f6d9ec8e2904ba8a58487040261cb.tar.gz openbsd-737bf9a0bb2f6d9ec8e2904ba8a58487040261cb.tar.bz2 openbsd-737bf9a0bb2f6d9ec8e2904ba8a58487040261cb.zip | |
Sort headers and use the installed tls.h, rather than the local one.
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libtls/tls_bio_cb.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/lib/libtls/tls_bio_cb.c b/src/lib/libtls/tls_bio_cb.c index cee37a86d8..e689cf1117 100644 --- a/src/lib/libtls/tls_bio_cb.c +++ b/src/lib/libtls/tls_bio_cb.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: tls_bio_cb.c,v 1.2 2016/09/04 12:54:33 jsing Exp $ */ | 1 | /* $OpenBSD: tls_bio_cb.c,v 1.3 2016/09/04 13:17:08 jsing Exp $ */ | 
| 2 | /* | 2 | /* | 
| 3 | * Copyright (c) 2016 Tobias Pape <tobias@netshed.de> | 3 | * Copyright (c) 2016 Tobias Pape <tobias@netshed.de> | 
| 4 | * | 4 | * | 
| @@ -15,15 +15,15 @@ | |||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
| 16 | */ | 16 | */ | 
| 17 | 17 | ||
| 18 | #include <fcntl.h> | ||
| 18 | #include <stdlib.h> | 19 | #include <stdlib.h> | 
| 19 | #include <unistd.h> | 20 | #include <unistd.h> | 
| 20 | #include <fcntl.h> | ||
| 21 | |||
| 22 | #include "tls.h" | ||
| 23 | #include "tls_internal.h" | ||
| 24 | 21 | ||
| 25 | #include <openssl/bio.h> | 22 | #include <openssl/bio.h> | 
| 26 | 23 | ||
| 24 | #include <tls.h> | ||
| 25 | #include "tls_internal.h" | ||
| 26 | |||
| 27 | static int write_cb(BIO *b, const char *buf, int num); | 27 | static int write_cb(BIO *b, const char *buf, int num); | 
| 28 | static int read_cb(BIO *b, char *buf, int size); | 28 | static int read_cb(BIO *b, char *buf, int size); | 
| 29 | static int puts_cb(BIO *b, const char *str); | 29 | static int puts_cb(BIO *b, const char *str); | 
