diff options
author | erdgeist <> | 2009-07-17 15:53:35 +0000 |
---|---|---|
committer | erdgeist <> | 2009-07-17 15:53:35 +0000 |
commit | 57f85fc7cccab846351dc36c8c25084793b4de0a (patch) | |
tree | fb2d4f0232032bda974e68d5ff74cd12d903e8ff | |
parent | 06e89257a18cc8fec5199e34fd787b4a563b743c (diff) |
Debug information only in debug mode.
-rw-r--r-- | ot_accesslist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ot_accesslist.c b/ot_accesslist.c index e8ff74c..65eceb7 100644 --- a/ot_accesslist.c +++ b/ot_accesslist.c | |||
@@ -83,9 +83,9 @@ static void accesslist_readfile( int sig ) { | |||
83 | /* Find start of next line */ | 83 | /* Find start of next line */ |
84 | while( read_offs < map_end && *(read_offs++) != '\n' ); | 84 | while( read_offs < map_end && *(read_offs++) != '\n' ); |
85 | } | 85 | } |
86 | //#ifdef _DEBUG | 86 | #ifdef _DEBUG |
87 | fprintf( stderr, "Added %d info_hashes to accesslist\n", info_hash - accesslist_new ); | 87 | fprintf( stderr, "Added %d info_hashes to accesslist\n", info_hash - accesslist_new ); |
88 | //#endif | 88 | #endif |
89 | 89 | ||
90 | mmap_unmap( map, maplen); | 90 | mmap_unmap( map, maplen); |
91 | 91 | ||