replace old magic numbers with proper #defines

This commit is contained in:
Harald Welte 2017-01-02 00:53:11 +01:00
parent 02f7f3af76
commit 651d4d8fbc
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ void diag_log_enable_all_supported_family(struct diag_instance *di, uint8_t fami
}
rx = diag_transceive_msg(di, msg);
if (rx->l2h[0] != 0x53)
if (rx->l2h[0] != DIAG_LOG_CONFIG_F)
fprintf(stderr, "Error enabling logs for family %d\n", family);
/* FIXME: further validation of response */
msgb_free(rx);

View File

@ -65,7 +65,7 @@ int diag_msg_config_set_rt_mask(struct diag_instance *di, uint16_t ssid, uint32_
rx = diag_transceive_msg(di, msg);
res = (struct diag_set_rt_mask_req *) (msgb_l2(msg)+1);
if ((rx->l2h[0] != 0x5d) || res->cmd_code != 0x5d ||
if ((rx->l2h[0] != DIAG_EXT_MSG_CONFIG_F) || res->cmd_code != MSG_EXT_SUBCMD_SET_RT_MASK ||
res->sub_cmd != MSG_EXT_SUBCMD_SET_RT_MASK ||
osmo_load16le(&res->ssid_start) != ssid ||
osmo_load16le(&res->ssid_end) != ssid ||