Sisyphus repositório
Última atualização: 1 outubro 2023 | SRPMs: 18631 | Visitas: 37851622
en ru br
ALT Linux repositórios
S:1.0.9-alt6.qa1
5.0: 1.0.9-alt5
4.1: 1.0.9-alt5
4.0: 1.0.9-alt5
3.0: 1.0.9-alt4

Group :: Sistema/Bibliotecas
RPM: libghttp

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs e FR  Repocop 

Patch: libghttp-1.0.9-deb-sprintf-locale.patch
Download


--- libghttp-1.0.9~/http_req.c	2000-12-05 19:49:15 +0000
+++ libghttp-1.0.9/http_req.c	2004-05-15 09:17:39 +0000
@@ -108,6 +108,7 @@ http_req_send(http_req *a_req, http_tran
   int         l_headers_len = 0;
   int         l_rv = 0;
   char       *l_content = NULL;
+  int         l_ver_major, l_ver_minor;
 
   /* see if we need to jump into the function somewhere */
   if (a_conn->sync == HTTP_TRANS_ASYNC)
@@ -125,21 +126,25 @@ http_req_send(http_req *a_req, http_tran
   memset(l_request, 0, 30 + strlen(a_req->resource) + (a_conn->proxy_host ?
 						       (strlen(a_req->host) + 20) : 0));
   /* copy it into the buffer */
+  l_ver_major = (int)a_req->http_ver;
+  l_ver_minor = ((int)(a_req->http_ver*10.0)) % 10;
   if (a_conn->proxy_host)
     {
       l_request_len = sprintf(l_request,
-			      "%s %s HTTP/%01.1f\r\n",
+			      "%s %s HTTP/%d.%d\r\n",
 			      http_req_type_char[a_req->type],
 			      a_req->full_uri,
-			      a_req->http_ver);
+			      l_ver_major,
+                              l_ver_minor);
     }
   else
     {
       l_request_len = sprintf(l_request,
-			      "%s %s HTTP/%01.1f\r\n",
+			      "%s %s HTTP/%d.%d\r\n",
 			      http_req_type_char[a_req->type],
 			      a_req->resource,
-			      a_req->http_ver);
+                              l_ver_major,
+                              l_ver_minor);
     }
   /* set the request in the connection buffer */
   http_trans_append_data_to_buf(a_conn, l_request, l_request_len);
 
projeto & código: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
mantenedor atual: Michael Shigorin
mantenedor da tradução: Fernando Martini aka fmartini © 2009