ARFCNs are in the range of 0..1023, not 0..1024

I'm sure I read somewhere that it actually was 0..1024, as I kept
wondering how stupid it was to use 10bit+1.  However, that source
was incorrect, as GSM TS 05.05 quite clearly states 0..1023
diff --git a/openbsc/src/libbsc/bsc_vty.c b/openbsc/src/libbsc/bsc_vty.c
index 0c02552..8c39b3a 100644
--- a/openbsc/src/libbsc/bsc_vty.c
+++ b/openbsc/src/libbsc/bsc_vty.c
@@ -2240,7 +2240,7 @@
 }
 
 DEFUN(cfg_bts_neigh, cfg_bts_neigh_cmd,
-	"neighbor-list (add|del) arfcn <0-1024>",
+	"neighbor-list (add|del) arfcn <0-1023>",
 	"Neighbor List\n" "Add to manual neighbor list\n"
 	"Delete from manual neighbor list\n" "ARFCN of neighbor\n"
 	"ARFCN of neighbor\n")
@@ -2264,7 +2264,7 @@
 }
 
 DEFUN(cfg_bts_si5_neigh, cfg_bts_si5_neigh_cmd,
-	"si5 neighbor-list (add|del) arfcn <0-1024>",
+	"si5 neighbor-list (add|del) arfcn <0-1023>",
 	"SI5 Neighbor List\n" "Add to manual SI5 neighbor list\n"
 	"Delete from SI5 manual neighbor list\n" "ARFCN of neighbor\n"
 	"ARFCN of neighbor\n")
@@ -2322,7 +2322,7 @@
 
 DEFUN(cfg_trx_arfcn,
       cfg_trx_arfcn_cmd,
-      "arfcn <0-1024>",
+      "arfcn <0-1023>",
       "Set the ARFCN for this TRX\n")
 {
 	int arfcn = atoi(argv[0]);