]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
rgacogne found that arm has unsigned chars which broke all the things in yahttp ...
authorbert hubert <bert.hubert@netherlabs.nl>
Thu, 3 Dec 2015 19:26:04 +0000 (20:26 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Thu, 3 Dec 2015 19:26:04 +0000 (20:26 +0100)
ext/yahttp/yahttp/utility.hpp

index 3b0a8d1d9ad19cd51619ee0de05d8bd55e8854d9..1e55605eb623e78fa73faefaba6aa61e2ff9d4dc 100644 (file)
@@ -8,7 +8,7 @@ namespace YaHTTP {
   /*! Case-Insensitive NULL safe comparator for string maps */
   struct ASCIICINullSafeComparator {
     bool operator() (const std::string& lhs, const std::string& rhs) const {
-      char v;
+      int v;
       std::string::const_iterator lhi = lhs.begin();
       std::string::const_iterator rhi = rhs.begin();
       for(;lhi != lhs.end() && rhi != rhs.end(); lhi++, rhi++)