diff options
Diffstat (limited to 'src/mds-server/interceptors.c')
-rw-r--r-- | src/mds-server/interceptors.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mds-server/interceptors.c b/src/mds-server/interceptors.c index ac64945..552d7a1 100644 --- a/src/mds-server/interceptors.c +++ b/src/mds-server/interceptors.c @@ -265,7 +265,6 @@ queued_interception_t* get_interceptors(client_t* sender, size_t* hashes, char** /* Count clients. */ foreach_linked_list_node (client_list, node) n++; - eprintf("n: %lu", n); /* TODO temporary */ /* Allocate interceptor list. */ if (xmalloc(interceptions, n, queued_interception_t)) @@ -281,7 +280,6 @@ queued_interception_t* get_interceptors(client_t* sender, size_t* hashes, char** { int r = find_matching_condition(client, hashes, keys, headers, count, interceptions + interceptions_count); - eprintf("%i", r); /* TODO temporary */ if (r == -1) { free(interceptions); @@ -293,7 +291,6 @@ queued_interception_t* get_interceptors(client_t* sender, size_t* hashes, char** } } - eprint(""); /* TODO temporary */ *interceptions_count_out = interceptions_count; return interceptions; } |