ipaccess: Refactor... unite some code

This commit is contained in:
Holger Hans Peter Freyther 2010-05-12 23:16:59 +08:00
parent 9958f477b4
commit ebead597ff
1 changed files with 11 additions and 11 deletions

View File

@ -92,23 +92,23 @@ static int ipacc_msg_nack(u_int8_t mt)
return 0;
}
static void check_restart_or_exit(struct gsm_bts *bts)
{
if (restart) {
abis_nm_ipaccess_restart(bts);
} else {
exit(0);
}
}
static int ipacc_msg_ack(u_int8_t mt, struct gsm_bts *bts)
{
if (sw_load_state == 1) {
fprintf(stderr, "The new software is activaed.\n");
if (restart) {
abis_nm_ipaccess_restart(bts);
} else {
exit(0);
}
check_restart_or_exit(bts);
} else if (oml_state == 1) {
fprintf(stderr, "Set the primary OML IP.\n");
if (restart) {
abis_nm_ipaccess_restart(bts);
} else {
exit(0);
}
check_restart_or_exit(bts);
}
return 0;