From 77515f66c57cd460cb654c6365c3e146dae98c66 Mon Sep 17 00:00:00 2001 From: Andrew Pogrebennyk Date: Thu, 14 Mar 2013 11:34:47 +0100 Subject: [PATCH] fix the fixup function --- modules_k/path/path_mod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules_k/path/path_mod.c b/modules_k/path/path_mod.c index cfa72b3a0..6a1102fb1 100644 --- a/modules_k/path/path_mod.c +++ b/modules_k/path/path_mod.c @@ -84,13 +84,13 @@ static cmd_export_t cmds[] = { { "add_path", (cmd_function)add_path, 1, fixup_str_null, 0, REQUEST_ROUTE }, { "add_path", (cmd_function)add_path, 2, - fixup_str_null, fixup_spve_null, REQUEST_ROUTE }, + fixup_spve_spve, 0, 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_str_null, 0, REQUEST_ROUTE }, { "add_path_received", (cmd_function)add_path_received, 2, - fixup_str_null, fixup_spve_null, REQUEST_ROUTE }, + fixup_spve_spve, 0, REQUEST_ROUTE }, { 0, 0, 0, 0, 0, 0 } };