From 91189aba9eed994931310d5f1ba25fa700eeebdb Mon Sep 17 00:00:00 2001 From: Andrew Pogrebennyk Date: Thu, 14 Mar 2013 10:03:19 +0100 Subject: [PATCH] try a different fixup function --- modules_k/path/path_mod.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules_k/path/path_mod.c b/modules_k/path/path_mod.c index ab4b2af56..7eb4b7d03 100644 --- a/modules_k/path/path_mod.c +++ b/modules_k/path/path_mod.c @@ -82,15 +82,15 @@ static cmd_export_t cmds[] = { { "add_path", (cmd_function)add_path, 0, 0, 0, REQUEST_ROUTE }, { "add_path", (cmd_function)add_path, 1, - fixup_spve_null, 0, REQUEST_ROUTE }, + fixup_str_null, 0, REQUEST_ROUTE }, { "add_path", (cmd_function)add_path, 2, - fixup_spve_null, fixup_spve_null, REQUEST_ROUTE }, + fixup_str_null, fixup_str_null, REQUEST_ROUTE }, { "add_path_received", (cmd_function)add_path_received, 0, 0, 0, REQUEST_ROUTE }, { "add_path_received", (cmd_function)add_path_received, 1, - fixup_spve_null, 0, REQUEST_ROUTE }, + fixup_str_null, 0, REQUEST_ROUTE }, { "add_path_received", (cmd_function)add_path_received, 2, - fixup_spve_null, fixup_spve_null, REQUEST_ROUTE }, + fixup_str_null, fixup_str_null, REQUEST_ROUTE }, { 0, 0, 0, 0, 0, 0 } };