From efd133cbd4709e71c5abaed6f92dc933522b5d7b Mon Sep 17 00:00:00 2001 From: Darryl Quinn Date: Wed, 24 Aug 2016 20:40:47 -0500 Subject: [PATCH] change AREDN upload to only pull /links from OLSR enables support for drawing map links as well. fixes AREDN->ticket:181 Change-Id: I5b0dd4b99d3892d136021faa4a5bd5856607b2a5 --- files/www/cgi-bin/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/www/cgi-bin/setup b/files/www/cgi-bin/setup index e12d3cf0..f0629014 100755 --- a/files/www/cgi-bin/setup +++ b/files/www/cgi-bin/setup @@ -65,7 +65,7 @@ if($parms{button_uploaddata}) chop($si); # get olsrd topo information - my $topo=`curl 'http://localnode:9090/topology/links' 2>/dev/null`; + my $topo=`curl 'http://localnode:9090/links' 2>/dev/null`; chomp($topo); # add topo subdoc and close root doc my $newsi= sprintf "%s,\"olsr\": %s}",$si, $topo;