aboutsummaryrefslogtreecommitdiffstats
path: root/src/x509find.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-06-19 09:51:03 +0000
committerlloyd <[email protected]>2006-06-19 09:51:03 +0000
commit7612c768e68202cfffbfdab2bc973b0f63bd0a03 (patch)
tree3b00287a609622cb2d0730413232718070958ae2 /src/x509find.cpp
parentdad5f59194f8d153af423461c1fd20cebfc6661e (diff)
Use preincrement instead of postincrement inside of some loops (mostly
for consistency with code that uses STL iterators, as these were mostly integer operations, though with one exception).
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;