]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix rev.13879
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 25 Jan 2015 07:25:48 +0000 (23:25 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 25 Jan 2015 07:25:48 +0000 (23:25 -0800)
src/acl/Tree.cc

index 5aff46fb125d6d8694a78d8fd617a3077bc2f15e..d1b5b7fe29f7c0f5859893c508172e28757ed309 100644 (file)
@@ -74,7 +74,7 @@ Acl::Tree::treeDump(const char *prefix, const ActionToString &convert) const
         }
 
 #if __cplusplus >= 201103L
-        sl.splice(text.end(), (*node)->dump());
+        text.splice(text.end(), (*node)->dump());
 #else
         // temp is needed until c++11 move constructor
         SBufList temp = (*node)->dump();