Changeset 1416

Show
Ignore:
Timestamp:
10/14/07 00:58:50 (11 months ago)
Author:
till
Message:

nebula
- forgotten hashlist stuff removed

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • nebula/trunk/ChangeLog

    r1414 r1416  
     1- process input from directory chronologically when -t is given 
    12- fixed sized queues for outlier list and cluster elements; size can be set via command line options 
    23- hash tries can be cleaned up by recursively deleting paths 
  • nebula/trunk/src/nebula.c

    r1415 r1416  
    5050        int             i, qsize, show_progress; 
    5151        u_char          time_sort, *content, *tmpbuf; 
    52         FILE            *md5sum_file, *spamsum_file; 
    5352        char            option, *dirname; 
    5453        hash            *tmp_hash; 
     
    6261 
    6362 
    64         spamsum_file    = NULL; 
    65         md5sum_file     = NULL; 
    6663        dirname         = NULL; 
    6764 
     
    8683 
    8784        memset(&md5sum_trie, 0, sizeof(trie_node)); 
     85        memset(&spamsum_trie, 0, sizeof(trie_node)); 
    8886 
    8987        // process args 
  • nebula/trunk/src/nebula.h

    r1414 r1416  
    2727 
    2828#include <sys/types.h> 
    29 #include <sys/queue.h> 
    3029 
    3130#include "cluster.h"