Changeset 1416
- Timestamp:
- 10/14/07 00:58:50 (11 months ago)
- Files:
-
- nebula/trunk/ChangeLog (modified) (1 diff)
- nebula/trunk/src/nebula.c (modified) (3 diffs)
- nebula/trunk/src/nebula.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
nebula/trunk/ChangeLog
r1414 r1416 1 - process input from directory chronologically when -t is given 1 2 - fixed sized queues for outlier list and cluster elements; size can be set via command line options 2 3 - hash tries can be cleaned up by recursively deleting paths nebula/trunk/src/nebula.c
r1415 r1416 50 50 int i, qsize, show_progress; 51 51 u_char time_sort, *content, *tmpbuf; 52 FILE *md5sum_file, *spamsum_file;53 52 char option, *dirname; 54 53 hash *tmp_hash; … … 62 61 63 62 64 spamsum_file = NULL;65 md5sum_file = NULL;66 63 dirname = NULL; 67 64 … … 86 83 87 84 memset(&md5sum_trie, 0, sizeof(trie_node)); 85 memset(&spamsum_trie, 0, sizeof(trie_node)); 88 86 89 87 // process args nebula/trunk/src/nebula.h
r1414 r1416 27 27 28 28 #include <sys/types.h> 29 #include <sys/queue.h>30 29 31 30 #include "cluster.h"
