Browse Source

auth_radius: Replacing STR_PARAM with PARAM_STRING to give up of depracated defines

Alekzander Spiridonov 11 years ago
parent
commit
3ef1b5f481
1 changed files with 2 additions and 2 deletions
  1. 2 2
      modules/auth_radius/authrad_mod.c

+ 2 - 2
modules/auth_radius/authrad_mod.c

@@ -89,10 +89,10 @@ static cmd_export_t cmds[] = {
  * Exported parameters
  */
 static param_export_t params[] = {
-	{"radius_config",    STR_PARAM, &radius_config   },
+	{"radius_config",    PARAM_STRING, &radius_config   },
 	{"service_type",     INT_PARAM, &service_type    },
 	{"use_ruri_flag",    INT_PARAM, &use_ruri_flag   },
-	{"auth_extra",       STR_PARAM, &auth_extra_str  },
+	{"auth_extra",       PARAM_STRING, &auth_extra_str  },
 	{0, 0, 0}
 };