diff options
Diffstat (limited to 'src/lib/libssl/d1_pkt.c')
-rw-r--r-- | src/lib/libssl/d1_pkt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/d1_pkt.c b/src/lib/libssl/d1_pkt.c index d75f56beb6..56e6939aed 100644 --- a/src/lib/libssl/d1_pkt.c +++ b/src/lib/libssl/d1_pkt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_pkt.c,v 1.30 2014/06/19 21:29:51 tedu Exp $ */ | 1 | /* $OpenBSD: d1_pkt.c,v 1.31 2014/07/09 16:06:14 miod Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -133,7 +133,7 @@ satsub64be(const unsigned char *v1, const unsigned char *v2) | |||
133 | do { | 133 | do { |
134 | long l; | 134 | long l; |
135 | 135 | ||
136 | if (_BYTE_ORDER == _LITTLE_ENDIAN) | 136 | if (BYTE_ORDER == LITTLE_ENDIAN) |
137 | break; | 137 | break; |
138 | /* not reached on little-endians */ | 138 | /* not reached on little-endians */ |
139 | /* following test is redundant, because input is | 139 | /* following test is redundant, because input is |