Skip to content

Commit

Permalink
Bug-fix: Incorrect return for consumption report configuration creation
Browse files Browse the repository at this point in the history
Fixes #156, #157.
  • Loading branch information
David Waring committed Apr 26, 2024
1 parent 876ba57 commit 1297be0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/5gmsaf/msaf-m1-sm.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,9 @@ void msaf_m1_state_functional(ogs_fsm_t *s, msaf_event_t *e)
} else {
ogs_sbi_response_t *response;

response = nf_server_new_response(NULL, NULL, 0, NULL, 0, NULL, api, app_meta);
response = nf_server_new_response(message->h.uri, NULL, 0, NULL, 0, NULL, api, app_meta);
ogs_assert(response);
nf_server_populate_response(response, 0, NULL, 204);
nf_server_populate_response(response, 0, NULL, 201);
ogs_assert(true == ogs_sbi_server_send_response(stream, response));
}
}
Expand Down

0 comments on commit 1297be0

Please sign in to comment.