From 003bc0451e76720a6740c12720d2302cb4647ade Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sat, 29 Nov 2008 23:11:31 +0100 Subject: [PATCH] Add missing pointer to function "string_build_with_exploded" in plugin API --- src/plugins/plugin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index fe305c3fd..d023719a6 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -343,6 +343,7 @@ plugin_load (const char *filename) new_plugin->string_mask_to_regex = &string_mask_to_regex; new_plugin->string_explode = &string_explode; new_plugin->string_free_exploded = &string_free_exploded; + new_plugin->string_build_with_exploded = &string_build_with_exploded; new_plugin->string_split_command = &string_split_command; new_plugin->string_free_splitted_command = &string_free_splitted_command;