bsc_vty: Don't allow timers of zero (0)

It typically doesn't make sense to configure any of the GSM RR timer
to 0 (Seconds).  In fact, accidentially configuring any of the timers
to zero might have severe side effects, such as "stuck channels"
described in https://osmocom.org/issues/2380

Change-Id: I517828f2f0c80ec01cb63648db2626f17a67fe57
diff --git a/src/libbsc/bsc_vty.c b/src/libbsc/bsc_vty.c
index 1e78b08..bf7c3ca 100644
--- a/src/libbsc/bsc_vty.c
+++ b/src/libbsc/bsc_vty.c
@@ -1543,14 +1543,14 @@
 #define DECLARE_TIMER(number, doc) \
     DEFUN(cfg_net_T##number,					\
       cfg_net_T##number##_cmd,					\
-      "timer t" #number  " <0-65535>",				\
+      "timer t" #number  " <1-65535>",				\
       "Configure GSM Timers\n"					\
       doc "Timer Value in seconds\n")				\
 {								\
 	struct gsm_network *gsmnet = gsmnet_from_vty(vty);	\
 	int value = atoi(argv[0]);				\
 								\
-	if (value < 0 || value > 65535) {			\
+	if (value < 1 || value > 65535) {			\
 		vty_out(vty, "Timer value %s out of range.%s",	\
 		        argv[0], VTY_NEWLINE);			\
 		return CMD_WARNING;				\