diff options
author | jsing <> | 2016-05-27 14:21:24 +0000 |
---|---|---|
committer | jsing <> | 2016-05-27 14:21:24 +0000 |
commit | 120e3c65fbf4c123167cf63e9cedc1500da60883 (patch) | |
tree | 7355f1426cb35d43b3410d0ac7322d9c42773467 /src/lib | |
parent | 4e7cd151ccb73c62b9b917fcb71eefbfe427c423 (diff) | |
download | openbsd-120e3c65fbf4c123167cf63e9cedc1500da60883.tar.gz openbsd-120e3c65fbf4c123167cf63e9cedc1500da60883.tar.bz2 openbsd-120e3c65fbf4c123167cf63e9cedc1500da60883.zip |
Fix function parameters that do not have an underscore prefix.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libtls/tls.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/libtls/tls.h b/src/lib/libtls/tls.h index 6994f1417b..75c46c1a1a 100644 --- a/src/lib/libtls/tls.h +++ b/src/lib/libtls/tls.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls.h,v 1.28 2016/04/28 17:05:59 jsing Exp $ */ | 1 | /* $OpenBSD: tls.h,v 1.29 2016/05/27 14:21:24 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -107,17 +107,17 @@ ssize_t tls_read(struct tls *_ctx, void *_buf, size_t _buflen); | |||
107 | ssize_t tls_write(struct tls *_ctx, const void *_buf, size_t _buflen); | 107 | ssize_t tls_write(struct tls *_ctx, const void *_buf, size_t _buflen); |
108 | int tls_close(struct tls *_ctx); | 108 | int tls_close(struct tls *_ctx); |
109 | 109 | ||
110 | int tls_peer_cert_provided(struct tls *ctx); | 110 | int tls_peer_cert_provided(struct tls *_ctx); |
111 | int tls_peer_cert_contains_name(struct tls *ctx, const char *name); | 111 | int tls_peer_cert_contains_name(struct tls *_ctx, const char *_name); |
112 | 112 | ||
113 | const char * tls_peer_cert_hash(struct tls *_ctx); | 113 | const char *tls_peer_cert_hash(struct tls *_ctx); |
114 | const char * tls_peer_cert_issuer(struct tls *ctx); | 114 | const char *tls_peer_cert_issuer(struct tls *_ctx); |
115 | const char * tls_peer_cert_subject(struct tls *ctx); | 115 | const char *tls_peer_cert_subject(struct tls *_ctx); |
116 | time_t tls_peer_cert_notbefore(struct tls *ctx); | 116 | time_t tls_peer_cert_notbefore(struct tls *_ctx); |
117 | time_t tls_peer_cert_notafter(struct tls *ctx); | 117 | time_t tls_peer_cert_notafter(struct tls *_ctx); |
118 | 118 | ||
119 | const char * tls_conn_version(struct tls *ctx); | 119 | const char *tls_conn_version(struct tls *_ctx); |
120 | const char * tls_conn_cipher(struct tls *ctx); | 120 | const char *tls_conn_cipher(struct tls *_ctx); |
121 | 121 | ||
122 | uint8_t *tls_load_file(const char *_file, size_t *_len, char *_password); | 122 | uint8_t *tls_load_file(const char *_file, size_t *_len, char *_password); |
123 | 123 | ||