diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-10-29 20:47:17 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-10-29 20:47:17 +0100 |
commit | 020bb327dd9445fd82dbf8d2e59a3d5bda408bb3 (patch) | |
tree | 53c658aeb80cbaabf6b1cb41b7aaf9e432744c5e /src/methods | |
parent | 8df7ea375df1ca8868763e30e90120e13af2b808 (diff) | |
download | fastd-020bb327dd9445fd82dbf8d2e59a3d5bda408bb3.tar fastd-020bb327dd9445fd82dbf8d2e59a3d5bda408bb3.zip |
Rename fastd_parse_method_name to fastd_method_get_by_name
Diffstat (limited to 'src/methods')
-rw-r--r-- | src/methods/methods.c.in | 2 |
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)) |