aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-04-19 02:05:28 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2019-04-19 20:20:47 +0700
commitd1e9ded94d41305fc63df916e3a7dc611ee8f82f (patch)
tree7e375b0fdc1e61fff4f80fb518ba48e98f180ae5
parentb873b91c5fd855d1e67a15fe13228919644f3747 (diff)
common/oml.c: use proper NACK reason in oml_tx_attr_resp()
-rw-r--r--src/common/oml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/oml.c b/src/common/oml.c
index 03fdc564..568d4068 100644
--- a/src/common/oml.c
+++ b/src/common/oml.c
@@ -275,7 +275,7 @@ static int oml_tx_attr_resp(struct gsm_bts *bts, const struct abis_om_fom_hdr *f
default:
LOGP(DOML, LOGL_ERROR, "Unsupported MO class %s in Get Attribute Response\n",
get_value_string(abis_nm_obj_class_names, foh->obj_class));
- len = -NM_NACK_RES_NOTIMPL;
+ len = -NM_NACK_OBJCLASS_NOTSUPP;
}
if (len < 0) {