From 52636f32c145281683e61be1f2e029950e674a8f Mon Sep 17 00:00:00 2001 From: Michael Iedema Date: Thu, 23 Jun 2022 02:04:23 -0700 Subject: [PATCH] typo: SAC needs 16bit range, not 8bit as copied from RAC entry Change-Id: I756fbab449151d912cde48f1da01d3b645b7627c --- src/osmo-hnodeb/vty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osmo-hnodeb/vty.c b/src/osmo-hnodeb/vty.c index f06e4cc..898c326 100644 --- a/src/osmo-hnodeb/vty.c +++ b/src/osmo-hnodeb/vty.c @@ -192,8 +192,8 @@ DEFUN_USRATTR(cfg_hnodeb_rac, DEFUN_USRATTR(cfg_hnodeb_sac, cfg_hnodeb_sac_cmd, 0, - "service_area_code <0-255>", - "Set the Service Area Code (RAC) of this HnodeB\n" "SAC\n") + "service_area_code <0-65535>", + "Set the Service Area Code (SAC) of this HnodeB\n" "SAC\n") { struct hnb *hnb = (struct hnb *)vty->index; hnb->sac = atoi(argv[0]);