From: Jeonghoon Park Date: Wed, 27 Jun 2018 06:45:44 +0000 (+0900) Subject: add missing slash for data url X-Git-Url: http://review.tizen.org/git/?p=apps%2Fnative%2Ftizen-things-daemon.git;a=commitdiff_plain;h=7d459bdef3b68c52304558e0ba7932e0c41c4040 add missing slash for data url Change-Id: I8d7a5ff0f12f44481d6347944eecd7f85da68abb --- diff --git a/daemon/src/ttd-http.c b/daemon/src/ttd-http.c index a26857e..d410dd3 100644 --- a/daemon/src/ttd-http.c +++ b/daemon/src/ttd-http.c @@ -330,7 +330,7 @@ int ttd_http_appdata_post( url = __get_url_by_type(TTD_URL_DATA); retvm_if(!url, -1, "failed to get url for DATA"); - p_url = g_strdup_printf("%s%s", url, project); + p_url = g_strdup_printf("%s/%s", url, project); retvm_if(!p_url, -1, "failed to create url for project"); _D("[%s] : %s", project, data_json);