libmsc: properly name the MSC_CONN_USE token for SS

Previously the MSC_CONN_USE token for Supplementary Services was
called 'MSC_CONN_USE_TRANS_USSD'. Non-call related Supplementary
Services is not only about USSD, so let's rename it.

Change-Id: I5b3517c87a32fa64dea6b0c912f2b76c5c25a112
This commit is contained in:
Vadim Yanitskiy 2018-06-10 22:22:49 +07:00
parent 635f98cf31
commit 846efcba95
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ enum msc_subscr_conn_use {
MSC_CONN_USE_CM_SERVICE,
MSC_CONN_USE_TRANS_CC,
MSC_CONN_USE_TRANS_SMS,
MSC_CONN_USE_TRANS_USSD,
MSC_CONN_USE_TRANS_NC_SS,
MSC_CONN_USE_SILENT_CALL,
MSC_CONN_USE_RELEASE,
};

View File

@ -327,7 +327,7 @@ const struct value_string msc_subscr_conn_use_names[] = {
{MSC_CONN_USE_CM_SERVICE, "cm_service"},
{MSC_CONN_USE_TRANS_CC, "trans_cc"},
{MSC_CONN_USE_TRANS_SMS, "trans_sms"},
{MSC_CONN_USE_TRANS_USSD, "trans_ussd"},
{MSC_CONN_USE_TRANS_NC_SS, "trans_nc_ss"},
{MSC_CONN_USE_SILENT_CALL, "silent_call"},
{MSC_CONN_USE_RELEASE, "release"},
{0, NULL},