summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s3_pkt.c
diff options
context:
space:
mode:
authorjsing <>2014-11-16 14:12:47 +0000
committerjsing <>2014-11-16 14:12:47 +0000
commitdc16671f7b6b2455ac1577a735b7ef0a5d6bdacf (patch)
tree04d418c3104bff49ee7d27e26e24c2cb5fd85474 /src/lib/libssl/s3_pkt.c
parent813e05067c1117845b5dd361512d5c36f5e7058c (diff)
downloadopenbsd-dc16671f7b6b2455ac1577a735b7ef0a5d6bdacf.tar.gz
openbsd-dc16671f7b6b2455ac1577a735b7ef0a5d6bdacf.tar.bz2
openbsd-dc16671f7b6b2455ac1577a735b7ef0a5d6bdacf.zip
Sort and group includes.
Diffstat (limited to 'src/lib/libssl/s3_pkt.c')
-rw-r--r--src/lib/libssl/s3_pkt.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/libssl/s3_pkt.c b/src/lib/libssl/s3_pkt.c
index 62fc6fbce2..ac1b2d7cb4 100644
--- a/src/lib/libssl/s3_pkt.c
+++ b/src/lib/libssl/s3_pkt.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: s3_pkt.c,v 1.51 2014/10/18 16:13:16 jsing Exp $ */ 1/* $OpenBSD: s3_pkt.c,v 1.52 2014/11/16 14:12:47 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -109,11 +109,13 @@
109 * 109 *
110 */ 110 */
111 111
112#include <stdio.h>
113#include <errno.h> 112#include <errno.h>
113#include <stdio.h>
114
114#include "ssl_locl.h" 115#include "ssl_locl.h"
115#include <openssl/evp.h> 116
116#include <openssl/buffer.h> 117#include <openssl/buffer.h>
118#include <openssl/evp.h>
117 119
118static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, 120static int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
119 unsigned int len, int create_empty_fragment); 121 unsigned int len, int create_empty_fragment);