From fcb023c73fe38d2916e6ba14a780fbbd7eea9d65 Mon Sep 17 00:00:00 2001 From: Sean Hefty Date: Thu, 27 Jun 2013 22:59:56 -0700 Subject: [PATCH] Refresh of add-the-ability-to-preload-the --- src/acm.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/acm.c b/src/acm.c index c640132..d37056c 100644 --- a/src/acm.c +++ b/src/acm.c @@ -3362,10 +3362,10 @@ static void acm_set_options(void) min_mtu = acm_convert_mtu(atoi(value)); else if (!stricmp("min_rate", opt)) min_rate = acm_convert_rate(atoi(value)); - else if (!stricmp("path_rec_fmt", opt)) - path_rec_fmt = acm_convert_path_rec_fmt(value); - else if (!stricmp("path_rec_file", opt)) - strcpy(path_rec_file, value); + else if (!stricmp("route_preload", opt)) + route_preload = acm_convert_route_preload(value); + else if (!stricmp("route_data_file", opt)) + strcpy(route_data_file, value); } fclose(f); @@ -3389,8 +3389,8 @@ static void acm_log_options(void) acm_log(0, "receive depth %d\n", recv_depth); acm_log(0, "minimum mtu %d\n", min_mtu); acm_log(0, "minimum rate %d\n", min_rate); - acm_log(0, "path record format %d\n", path_rec_fmt); - acm_log(0, "path record file %s\n", path_rec_file); + acm_log(0, "route preload %d\n", route_preload); + acm_log(0, "route data file %s\n", route_data_file); } static FILE *acm_open_log(void) -- 2.46.0