Commit 25d612bb authored by Lionel Gauthier's avatar Lionel Gauthier

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6393 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 7307bd39
...@@ -305,9 +305,12 @@ int s6a_generate_authentication_info_req(s6a_auth_info_req_t *air_p) ...@@ -305,9 +305,12 @@ int s6a_generate_authentication_info_req(s6a_auth_info_req_t *air_p)
/* Destination Host */ /* Destination Host */
{ {
char host[40] = "hss."; char host[100];
size_t hostlen; size_t hostlen;
memset(host, 0, 100);
strcat(host, mme_config.s6a_config.hss_host_name);
strcat(host, ".");
strcat(host, mme_config.realm); strcat(host, mme_config.realm);
hostlen = strlen(host); hostlen = strlen(host);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment