fixed: Typo
authorarnova <arnova@void.org>
Tue, 3 Jul 2012 14:08:54 +0000 (16:08 +0200)
committerarnova <arnova@void.org>
Tue, 3 Jul 2012 14:08:54 +0000 (16:08 +0200)
xbmc/URL.cpp

index 0c94c29..031051e 100644 (file)
@@ -693,7 +693,7 @@ void CURL::Encode(CStdString& strURLData)
   {
     int kar = (unsigned char)strURLData[i];
     //if (kar == ' ') strResult += '+'; // obsolete
-    if (isalnum(kar) || strchr("-_.!()" , kar) ) // Don't URL encode these according to RFC1738s
+    if (isalnum(kar) || strchr("-_.!()" , kar) ) // Don't URL encode these according to RFC1738
     {
       strResult += kar;
     }