]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix spelling: compressing, not compresing
authorNick Mathewson <nickm@torproject.org>
Thu, 28 Sep 2017 16:17:34 +0000 (12:17 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 28 Sep 2017 16:17:34 +0000 (12:17 -0400)
src/common/compress.c

index 110eb65867dd14465c11d7bf2d4c619a75f9fb33..520148f83d67c0401e7ae2340b72f476469e17d3 100644 (file)
@@ -164,7 +164,7 @@ tor_compress_impl(int compress,
           goto err;
         }
         if (out_alloc >= SIZE_T_CEILING / 2) {
-          log_warn(LD_GENERAL, "While %scompresing data: ran out of space.",
+          log_warn(LD_GENERAL, "While %scompressing data: ran out of space.",
                    compress?"":"un");
           goto err;
         }
@@ -185,7 +185,7 @@ tor_compress_impl(int compress,
       }
       case TOR_COMPRESS_ERROR:
         log_fn(protocol_warn_level, LD_GENERAL,
-               "Error while %scompresing data: bad input?",
+               "Error while %scompressing data: bad input?",
                compress?"":"un");
         goto err; // bad data.