[SMF] gn-handler: Fix typo in error message (#1517)

This commit is contained in:
Pau Espin 2022-05-03 14:14:19 +02:00 committed by GitHub
parent 3508e09a41
commit aa6f3ef8d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -86,11 +86,11 @@ uint8_t smf_gn_handle_create_pdp_context_request(
cause_value = OGS_GTP1_CAUSE_MANDATORY_IE_MISSING;
}
if (req->sgsn_address_for_signalling.presence == 0) {
ogs_error("SGSN Address for signalling");
ogs_error("No SGSN Address for signalling");
cause_value = OGS_GTP1_CAUSE_MANDATORY_IE_MISSING;
}
if (req->sgsn_address_for_user_traffic.presence == 0) {
ogs_error("SGSN Address for user traffic");
ogs_error("No SGSN Address for user traffic");
cause_value = OGS_GTP1_CAUSE_MANDATORY_IE_MISSING;
}
if (req->quality_of_service_profile.presence == 0) {