summaryrefslogtreecommitdiffstats
path: root/crypto/srp
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-04-25 15:35:41 +0200
committerRichard Levitte <levitte@openssl.org>2017-04-25 15:44:48 +0200
commitd88ab353d3f94031d56d2d6451695eac305c9738 (patch)
tree5b44fa01b0acf182c47f241a3000b73ce3f4ce39 /crypto/srp
parenta5eef31e257bc6267e0973edda18ee2f180ed081 (diff)
Correct some badly formated preprocessor lines
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3304)
Diffstat (limited to 'crypto/srp')
-rw-r--r--crypto/srp/srp_vfy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/srp/srp_vfy.c b/crypto/srp/srp_vfy.c
index 29b7afcb04..20e4258427 100644
--- a/crypto/srp/srp_vfy.c
+++ b/crypto/srp/srp_vfy.c
@@ -474,7 +474,7 @@ static SRP_user_pwd *find_user(SRP_VBASE *vb, char *username)
return NULL;
}
- #if OPENSSL_API_COMPAT < 0x10100000L
+# if OPENSSL_API_COMPAT < 0x10100000L
/*
* DEPRECATED: use SRP_VBASE_get1_by_user instead.
* This method ignores the configured seed and fails for an unknown user.
@@ -485,7 +485,7 @@ SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username)
{
return find_user(vb, username);
}
-#endif
+# endif
/*
* Ownership of the returned pointer is released to the caller.