diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2021-06-11 11:13:54 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2021-06-11 11:13:54 +0000 |
commit | b2952d7ab670dac94a17a9b798535c54435849bd (patch) | |
tree | ef1d1ed083902690a8ca47865600e37541df930a /lib/libssl/d1_pkt.c | |
parent | cbe44cb3d5bf5e670c85b52231a5485349f0074a (diff) |
Indent all labels with a single space.
This ensures that diff reports the correct function prototype.
Prompted by tb@
Diffstat (limited to 'lib/libssl/d1_pkt.c')
-rw-r--r-- | lib/libssl/d1_pkt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libssl/d1_pkt.c b/lib/libssl/d1_pkt.c index 3b3fd95f6f9..504044d8af1 100644 --- a/lib/libssl/d1_pkt.c +++ b/lib/libssl/d1_pkt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_pkt.c,v 1.96 2021/05/16 13:56:30 jsing Exp $ */ +/* $OpenBSD: d1_pkt.c,v 1.97 2021/06/11 11:13:53 jsing Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -244,10 +244,10 @@ dtls1_buffer_record(SSL *s, record_pqueue *queue, unsigned char *priority) return (1); -err: + err: ssl3_release_buffer(&rdata->rbuf); -init_err: + init_err: SSLerror(s, ERR_R_INTERNAL_ERROR); free(rdata); pitem_free(item); @@ -377,7 +377,7 @@ dtls1_get_record(SSL *s) /* get something from the wire */ if (0) { -again: + again: /* dump this record on all retries */ rr->length = 0; s->internal->packet_length = 0; |