]> source.dussan.org Git - rspamd.git/commitdiff
Oops, remove debug.
authorVsevolod Stakhov <vsevolod@rambler-co.ru>
Thu, 23 Jun 2011 15:10:30 +0000 (19:10 +0400)
committerVsevolod Stakhov <vsevolod@rambler-co.ru>
Thu, 23 Jun 2011 15:10:30 +0000 (19:10 +0400)
src/fuzzy.c

index ce5217b5b65616ff3402dce8f68502550e6e4d81..1a9337071149af9c4736ebe06bf9b67e62b8135b 100644 (file)
@@ -321,7 +321,6 @@ fuzzy_init_part (struct mime_text_part *part, memory_pool_t *pool)
        gsize                           real_len = 0, len = part->content->len;
        GList                          *cur_offset;
        struct uri                     *cur_url = NULL;
-       GString                        *debug;
 
        cur_offset = part->urls_offset;
        if (cur_offset != NULL) {
@@ -350,8 +349,6 @@ fuzzy_init_part (struct mime_text_part *part, memory_pool_t *pool)
                }
        }
 
-       debug = g_string_sized_new (real_len);
-
        new->block_size = fuzzy_blocksize (real_len);
        new2->block_size = new->block_size * 2;
 
@@ -370,20 +367,16 @@ fuzzy_init_part (struct mime_text_part *part, memory_pool_t *pool)
                        if (cur_offset != NULL) {
                                cur_url = cur_offset->data;
                        }
-                       msg_info ("skip url block of %d symbols", cur_url->len);
                }
                else {
                        if (!g_ascii_isspace (*c) && !g_ascii_ispunct (*c)) {
                                fuzzy_update2 (new, new2, *c);
-                               g_string_append_c (debug, *c);
                        }
                        c++;
                        i++;
                }
        }
 
-       msg_info ("make hash of string: %v", debug);
-
        /* Check whether we have more bytes in a rolling window */
        if (new->rh != 0) {
                new->hash_pipe[new->hi] = b64[new->h % 64];