hnbgw: use OSMO_STRLCPY_ARRAY() instead of open coding it

Change-Id: I4c539168597187408c31b906fd57844e0f165c9b
This commit is contained in:
Harald Welte 2020-12-30 13:39:06 +01:00
parent 294610160d
commit dc529f3d78
1 changed files with 3 additions and 4 deletions

View File

@ -195,10 +195,9 @@ struct ue_context *ue_context_alloc(struct hnb_context *hnb, const char *imsi,
return NULL;
ue->hnb = hnb;
if (imsi) {
strncpy(ue->imsi, imsi, sizeof(ue->imsi));
ue->imsi[sizeof(ue->imsi)-1] = '\0';
} else
if (imsi)
OSMO_STRLCPY_ARRAY(ue->imsi, imsi);
else
ue->imsi[0] = '\0';
ue->tmsi = tmsi;
ue->context_id = get_next_ue_ctx_id(hnb->gw);