소스 검색

prefix_route: replace STR_PARAM with PARAM_STRING

Alekzander Spiridonov 11 년 전
부모
커밋
109c2270ef
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      modules/prefix_route/prefix_route.c

+ 2 - 2
modules/prefix_route/prefix_route.c

@@ -314,8 +314,8 @@ static cmd_export_t cmds[] = {
  * Exported parameters
  */
 static param_export_t params[] = {
-	{"db_url",       STR_PARAM, &db_url  },
-	{"db_table",     STR_PARAM, &db_table},
+	{"db_url",       PARAM_STRING, &db_url  },
+	{"db_table",     PARAM_STRING, &db_table},
 	{"exit",         INT_PARAM, &prefix_route_exit},
 	{0,              0,         0        }
 };