diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-07-27 20:16:07 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-07-27 20:16:07 +0200 |
commit | 88ff17de1673575b247da3374dedf8561716238e (patch) | |
tree | 1302ffb5363724ece99148022fb897a8d65ef5c2 /src/mds-server | |
parent | mark temporary prints (diff) | |
download | mds-88ff17de1673575b247da3374dedf8561716238e.tar.gz mds-88ff17de1673575b247da3374dedf8561716238e.tar.bz2 mds-88ff17de1673575b247da3374dedf8561716238e.tar.xz |
fix multiple clients bug: minor bug in linked_list caused removal of old clients + add dump method for linked list
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-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; } |