summaryrefslogtreecommitdiffstats
path: root/src/methods/methods.c.in
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-10-29 20:47:17 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-10-29 20:47:17 +0100
commit020bb327dd9445fd82dbf8d2e59a3d5bda408bb3 (patch)
tree53c658aeb80cbaabf6b1cb41b7aaf9e432744c5e /src/methods/methods.c.in
parent8df7ea375df1ca8868763e30e90120e13af2b808 (diff)
downloadfastd-020bb327dd9445fd82dbf8d2e59a3d5bda408bb3.tar
fastd-020bb327dd9445fd82dbf8d2e59a3d5bda408bb3.zip
Rename fastd_parse_method_name to fastd_method_get_by_name
Diffstat (limited to 'src/methods/methods.c.in')
-rw-r--r--src/methods/methods.c.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/methods/methods.c.in b/src/methods/methods.c.in
index f402b51..61d1251 100644
--- a/src/methods/methods.c.in
+++ b/src/methods/methods.c.in
@@ -33,7 +33,7 @@ static const fastd_method_t *const methods[] = { @METHOD_LIST@
};
-const fastd_method_t* fastd_parse_method_name(const char *name) {
+const fastd_method_t* fastd_method_get_by_name(const char *name) {
int i;
for (i = 0; methods[i]; i++) {
if (!strcmp(methods[i]->name, name))