diff options
Diffstat (limited to 'src/asn1_tm.cpp')
-rw-r--r-- | src/asn1_tm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/asn1_tm.cpp b/src/asn1_tm.cpp index 25b434609..e59b352c7 100644 --- a/src/asn1_tm.cpp +++ b/src/asn1_tm.cpp @@ -93,7 +93,7 @@ void X509_Time::set_to(const std::string& time_str) { if(current != "") params.push_back(current); - current = ""; + current.clear(); } } if(current != "") @@ -140,7 +140,7 @@ void X509_Time::set_to(const std::string& t_spec, ASN1_Tag tag) for(u32bit j = 0; j != YEAR_SIZE; ++j) current += t_spec[j]; params.push_back(current); - current = ""; + current.clear(); for(u32bit j = YEAR_SIZE; j != t_spec.size() - 1; ++j) { @@ -148,7 +148,7 @@ void X509_Time::set_to(const std::string& t_spec, ASN1_Tag tag) if(current.size() == 2) { params.push_back(current); - current = ""; + current.clear(); } } |