meas_json: fix NEIGH: missing array braces

Make NEIGH an array of Javascript objects, otherwise the JSON is not parseable
when neighbours exist

Change-Id: I42029f40bf357adbb2f3c71cdcbafbc21090e348
This commit is contained in:
Keith Whyte 2017-02-25 13:46:37 +01:00 committed by Keith Whyte
parent f480b35893
commit f01bd13ca1
1 changed files with 2 additions and 1 deletions

View File

@ -89,7 +89,7 @@ static void print_meas_rep_json(struct gsm_meas_rep *mr)
for (i = 0; i < mr->num_cell; i++) {
struct gsm_meas_rep_cell *mrc = &mr->cell[i];
if (i!=0) printf(", ");
printf("\"IDX\":%u, \"ARFCN\":%u, \"BSIC\":%u, \"POWER\":%d",
printf("{\"IDX\":%u, \"ARFCN\":%u, \"BSIC\":%u, \"POWER\":%d}",
mrc->neigh_idx, mrc->arfcn, mrc->bsic, rxlev2dbm(mrc->rxlev));
}
printf("]");
@ -151,6 +151,7 @@ static int handle_msg(struct msgb *msg)
default:
break;
}
return 0;
}
static int udp_fd_cb(struct osmo_fd *ofd, unsigned int what)