summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/ssl/tls_srp.c
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2014-04-19 08:52:32 +0000
committerguenther <guenther@openbsd.org>2014-04-19 08:52:32 +0000
commitdbea66cd1623e97296cb30d20896a9c0c5976d2c (patch)
tree19fdc86fc22b0040ec8adf299f852dd795e70bb8 /lib/libssl/src/ssl/tls_srp.c
parenttiny fix: Remove duplicate rows, they appeared after importing less 444 (diff)
downloadwireguard-openbsd-dbea66cd1623e97296cb30d20896a9c0c5976d2c.tar.xz
wireguard-openbsd-dbea66cd1623e97296cb30d20896a9c0c5976d2c.zip
More KNF and style consistency tweaks
Diffstat (limited to 'lib/libssl/src/ssl/tls_srp.c')
-rw-r--r--lib/libssl/src/ssl/tls_srp.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libssl/src/ssl/tls_srp.c b/lib/libssl/src/ssl/tls_srp.c
index a3acb6fd14b..c585211cd0b 100644
--- a/lib/libssl/src/ssl/tls_srp.c
+++ b/lib/libssl/src/ssl/tls_srp.c
@@ -426,32 +426,32 @@ SRP_Calc_A_param(SSL *s)
return 1;
}
-BIGNUM
-*SSL_get_srp_g(SSL *s)
+BIGNUM *
+SSL_get_srp_g(SSL *s)
{
if (s->srp_ctx.g != NULL)
return s->srp_ctx.g;
return s->ctx->srp_ctx.g;
}
-BIGNUM
-*SSL_get_srp_N(SSL *s)
+BIGNUM *
+SSL_get_srp_N(SSL *s)
{
if (s->srp_ctx.N != NULL)
return s->srp_ctx.N;
return s->ctx->srp_ctx.N;
}
-char
-*SSL_get_srp_username(SSL *s)
+char *
+SSL_get_srp_username(SSL *s)
{
if (s->srp_ctx.login != NULL)
return s->srp_ctx.login;
return s->ctx->srp_ctx.login;
}
-char
-*SSL_get_srp_userinfo(SSL *s)
+char *
+SSL_get_srp_userinfo(SSL *s)
{
if (s->srp_ctx.info != NULL)
return s->srp_ctx.info;