summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--lib/util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.cc b/lib/util.cc
index 3e7f3aa..b702291 100644
--- a/lib/util.cc
+++ b/lib/util.cc
@@ -207,6 +207,6 @@ namespace opkele {
throw failed_conversion(OPKELE_CP_ "trailing percent in the url-encoded string");
- tmp[0] == *(i++);
+ tmp[0] = *(i++);
if(i==ie)
throw failed_conversion(OPKELE_CP_ "not enough hexadecimals after the percent sign in url-encoded string");
- tmp[1] == *i;
+ tmp[1] = *i;
if(!(isxdigit(tmp[0]) && isxdigit(tmp[1])))