bsc_vty: Fix missing break statements in switch()

Change-Id: Ifd48e8d56c845603d320748144b4d7c3c24022a0
Fixes: Coverity CID 135188
Fixes: Coverity CID 135190
This commit is contained in:
Harald Welte 2016-11-26 15:06:37 +01:00
parent b42dc43e28
commit a191dcd8f0
1 changed files with 2 additions and 0 deletions

View File

@ -2799,9 +2799,11 @@ DEFUN(cfg_bts_si2quater_uarfcn_add, cfg_bts_si2quater_uarfcn_add_cmd,
case -ENOMEM:
vty_out(vty, "Unable to add arfcn: max number of UARFCNs (%u) "
"reached%s", MAX_EARFCN_LIST, VTY_NEWLINE);
return CMD_WARNING;
case -ENOSPC:
vty_out(vty, "Warning: not enough space in si2quater for a "
"given arfcn%s", VTY_NEWLINE);
return CMD_WARNING;
case -EADDRINUSE:
vty_out(vty, "Unable to add arfcn: (%u, %u) is already added%s",
arfcn, scramble, VTY_NEWLINE);