From 026a467b0e1db2d90ad1b4d0be6511c777da39e7 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Wed, 25 Jun 2008 21:37:52 +0000 Subject: gave up the most stupid bug contest award Thanks to compiler for spotting it. Signed-off-by: Michael Krelin --- (limited to 'lib') diff --git a/lib/util.cc b/lib/util.cc index 3e7f3aa..b702291 100644 --- a/lib/util.cc +++ b/lib/util.cc @@ -205,10 +205,10 @@ namespace opkele { static char tmp[3] = {0,0,0}; if(i==ie) 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]))) throw failed_conversion(OPKELE_CP_ "non-hex follows percent in url-encoded string"); *(ii++) = strtol(tmp,0,16); -- cgit v0.9.0.2