summaryrefslogtreecommitdiffstats
path: root/src/methods/null/null.c
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-11-02 14:34:01 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-11-02 14:34:01 +0100
commit20a95ef2731ce21acfe5c1ba97b40001217b0216 (patch)
treea41ed017d615a42771113fc9d7ee3df67652620f /src/methods/null/null.c
parent7a3c8bee42879add84a143ff98f28cbd0251dc7b (diff)
downloadfastd-20a95ef2731ce21acfe5c1ba97b40001217b0216.tar
fastd-20a95ef2731ce21acfe5c1ba97b40001217b0216.zip
Convert aes128-gcm into a generic gcm method
Diffstat (limited to 'src/methods/null/null.c')
-rw-r--r--src/methods/null/null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/methods/null/null.c b/src/methods/null/null.c
index cba7931..e93f0cf 100644
--- a/src/methods/null/null.c
+++ b/src/methods/null/null.c
@@ -33,7 +33,7 @@ struct fastd_method_session_state {
};
-static bool method_provides(fastd_context_t *ctx UNUSED, const char *name) {
+static bool method_provides(const char *name) {
return !strcmp(name, "null");
}