aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-server/interceptors.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-12-09 03:42:16 +0100
committerMattias Andrée <maandree@operamail.com>2014-12-09 03:42:16 +0100
commit8b69e6f4f9e239e660b26695c6a7f5007fcadf4e (patch)
treefb80b3ef0e017ca36568da6312c292c479122a27 /src/mds-server/interceptors.h
parentwith a few exceptions and some remaining files, never return directly on failure, always goto fail by invoking fail_if (diff)
downloadmds-8b69e6f4f9e239e660b26695c6a7f5007fcadf4e.tar.gz
mds-8b69e6f4f9e239e660b26695c6a7f5007fcadf4e.tar.bz2
mds-8b69e6f4f9e239e660b26695c6a7f5007fcadf4e.tar.xz
with a few exceptions, never return directly on failure, always goto fail by invoking fail_if
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/mds-server/interceptors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds-server/interceptors.h b/src/mds-server/interceptors.h
index 7bb60e5..e2e6041 100644
--- a/src/mds-server/interceptors.h
+++ b/src/mds-server/interceptors.h
@@ -77,7 +77,7 @@ int find_matching_condition(client_t* client, size_t* hashes, char** keys, char*
* @param headers The header name–value pairs
* @param count The number of accepted patterns
* @param interceptions_count_out Slot at where to store the number of found interceptors
- * @return The found interceptors, NULL on error
+ * @return The found interceptors, `NULL` on error
*/
queued_interception_t* get_interceptors(client_t* sender, size_t* hashes, char** keys, char** headers,
size_t count, size_t* interceptions_count_out);