]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - lib/libTrie/test/trie.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / lib / libTrie / test / trie.cc
index 8404ff409eae413f4b44e468a802974176e29d17..c589603114be6e68282881bf5d5da0f5202a5162 100644 (file)
@@ -1,29 +1,16 @@
 /*
- * Copyright (c) 2002,2003 Robert Collins <rbtcollins@hotmail.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
+ * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
  *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
  */
 
 #include "squid.h"
 #include "libTrie/Trie.h"
 #include "libTrie/TrieCharTransform.h"
 
-#if HAVE_IOSTREAM
 #include <iostream>
-#endif
 
 bool
 CaseSensitiveCheck()
@@ -60,12 +47,12 @@ CaseSensitiveCheck()
         return 1;
     }
 
-    if (aTrie.findPrefix("User-AgentFoo" , 13) != (void *)1) {
+    if (aTrie.findPrefix("User-AgentFoo", 13) != (void *)1) {
         std::cerr << "Could not find User prefix" << std::endl;
         return 1;
     }
 
-    if (aTrie.findPrefix("user-agentFoo" , 13) == (void *)1) {
+    if (aTrie.findPrefix("user-agentFoo", 13) == (void *)1) {
         std::cerr << "found user prefix" << std::endl;
         return 1;
     }
@@ -108,12 +95,12 @@ CaseInsensitiveCheck()
         return 1;
     }
 
-    if (aTrie.findPrefix("User-AgentFoo" , 13) != (void *)1) {
+    if (aTrie.findPrefix("User-AgentFoo", 13) != (void *)1) {
         std::cerr << "Could not find User prefix" << std::endl;
         return 1;
     }
 
-    if (aTrie.findPrefix("user-agentFoo" , 13) != (void *)1) {
+    if (aTrie.findPrefix("user-agentFoo", 13) != (void *)1) {
         std::cerr << "Could not find user prefix" << std::endl;
         return 1;
     }
@@ -135,3 +122,4 @@ int main (int argc, char **argv)
 
     return 0;
 }
+