summaryrefslogtreecommitdiffstats
path: root/ssl.c
diff options
context:
space:
mode:
authorEmilien Mantel <emilien.mantel@businessdecision.com>2010-06-26 13:56:48 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-10-21 21:26:59 +0200
commit238f81b9097c6ec70be3080b23cce46ad635e54c (patch)
tree70c5279836cfe7772af884109e2f98fb1d832cdf /ssl.c
parent2e8337de248ef0b5b48cbb2964da0d5c3f28b15b (diff)
downloadopenvpn-238f81b9097c6ec70be3080b23cce46ad635e54c.tar.gz
openvpn-238f81b9097c6ec70be3080b23cce46ad635e54c.tar.xz
openvpn-238f81b9097c6ec70be3080b23cce46ad635e54c.zip
Fixed static defined length check to use sizeof()
This comes in addition to commit 935c62be9c0c8a256112d after some additional review comments. Signed-off-by: Emilien Mantel <emilien.mantel@businessdecision.com> Acked-by: Peter Stuge <peter@stuge.se> Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Diffstat (limited to 'ssl.c')
-rw-r--r--ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl.c b/ssl.c
index e628504..ed2f69d 100644
--- a/ssl.c
+++ b/ssl.c
@@ -779,7 +779,7 @@ verify_callback (int preverify_ok, X509_STORE_CTX * ctx)
string_replace_leading (subject, '-', '_');
/* extract the username (default is CN) */
- if (!extract_x509_field_ssl (X509_get_subject_name (ctx->current_cert), x509_username_field, common_name, TLS_USERNAME_LEN))
+ if (!extract_x509_field_ssl (X509_get_subject_name (ctx->current_cert), x509_username_field, common_name, sizeof(common_name)))
{
if (!ctx->error_depth)
{