Add a single space between field and value in a header
authorMyeongSeong Seo <ms49.seo@samsung.com>
Thu, 28 Mar 2013 06:00:11 +0000 (15:00 +0900)
committerMyeongSeong Seo <ms49.seo@samsung.com>
Thu, 28 Mar 2013 06:00:11 +0000 (15:00 +0900)
Change-Id: Idb1a49e57817de40440d4a808fc45bcfa36d1d9b
Signed-off-by: MyeongSeong Seo <ms49.seo@samsung.com>
src/http/FNetHttp_HttpHeaderImpl.cpp

index 9cbeca7..514cdf3 100644 (file)
@@ -619,7 +619,7 @@ _HttpHeaderImpl::MakeCurlHeaderList()
                        SysTryCatch(NID_NET_HTTP, r == E_SUCCESS, , E_OUT_OF_MEMORY,
                                                "[E_OUT_OF_MEMORY] Memory allocation failed.");
 
-                       r = pRawHeaderString->Append(L":");
+                       r = pRawHeaderString->Append(L": ");
                        SysTryCatch(NID_NET_HTTP, r == E_SUCCESS, , E_OUT_OF_MEMORY,
                                                "[E_OUT_OF_MEMORY] Memory allocation failed.");