From 7d459bdef3b68c52304558e0ba7932e0c41c4040 Mon Sep 17 00:00:00 2001 From: Jeonghoon Park Date: Wed, 27 Jun 2018 15:45:44 +0900 Subject: [PATCH] add missing slash for data url Change-Id: I8d7a5ff0f12f44481d6347944eecd7f85da68abb --- daemon/src/ttd-http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.7.4