]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Typo in purge.
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 14 Jan 2012 10:50:57 +0000 (03:50 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 14 Jan 2012 10:50:57 +0000 (03:50 -0700)
tools/purge/copyout.cc

index b6f4129f2b79c822fba23c148179fe2a61213f25..72de4073e0135c60225c41c3ea5ab32aeb57f826 100644 (file)
@@ -86,7 +86,7 @@ assert_copydir( const char* copydir )
                !( (st.st_uid == geteuid() && ( (st.st_mode & S_IWUSR) > 0 )) ||
                (st.st_gid == getegid() && ( (st.st_mode & S_IWGRP) > 0 )) ||
                ((st.st_mode & S_IWOTH) > 0) ) ) {
-        std::cerr << "copy dir \"" << copydir "\" is not accessible to me\n";
+        std::cerr << "copy dir \"" << copydir << "\" is not accessible to me" << std::endl;
         return -1;
     }
 #endif