aboutsummaryrefslogtreecommitdiffstats
path: root/src/x509find.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/x509find.cpp')
-rw-r--r--src/x509find.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x509find.cpp b/src/x509find.cpp
index f78c037b5..fe614758d 100644
--- a/src/x509find.cpp
+++ b/src/x509find.cpp
@@ -53,7 +53,7 @@ class DN_Check : public X509_Store::Search_Func
{
std::vector<std::string> info = cert.subject_info(dn_entry);
- for(u32bit j = 0; j != info.size(); j++)
+ for(u32bit j = 0; j != info.size(); ++j)
if(compare(info[j], looking_for))
return true;
return false;