]> git.pld-linux.org Git - packages/dillo.git/commitdiff
- updated to 0.8.2
authorluzik <luzik@pld-linux.org>
Wed, 21 Jul 2004 20:22:42 +0000 (20:22 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dillo-0.7.0-alt-asp-charset-encodings-sysconfdir.patch -> 1.4
    dillo-gzip_fallback.patch -> 1.5

dillo-0.7.0-alt-asp-charset-encodings-sysconfdir.patch
dillo-gzip_fallback.patch

index 5cbf3aee314e437cffd424d5a11ab94dccda7074..cba3267fc9748445012e8e9922d926095f9a7cd2 100644 (file)
@@ -167,10 +167,10 @@ diff -Nur old/src/dw_style.c new/src/dw_style.c
  
  #include <gdk/gdk.h>
  #include <stdio.h>
-@@ -294,40 +295,37 @@
+@@ -300,40 +301,37 @@
        break;
     }
-    
 -   sprintf (fontname, "-*-%s-%s-%s-*-*-%d-*-75-75-*-*-iso8859-1",
 +   sprintf (fontname, "-*-%s-%s-%s-*-*-%d-*-75-75-*-*-%s",
              font->name,
index 099448a66385c39ad44008ccb18ac2939a5b496f..114a25b1c2733ec20422aa79758a32985245e83f 100644 (file)
@@ -67,7 +67,7 @@
  
  
 -   /* Append raw file contents */
--   while ( (nbytes = read(Dfile->FD, buf, 8192)) != 0 ) {
+-   while ( (nbytes = read(Dfile->FD, buf, LBUF)) != 0 ) {
 -      write(Dfile->FD_Write, buf, nbytes);
 +   /* decompress gzipped file */
 +   if (Dfile->ContentEncoding == GZIP_ENCODING) {
@@ -79,7 +79,7 @@
     }
 +   else {
 +   /* Append raw file contents */
-+      while ( (nbytes = read(Dfile->FD, buf, 8192)) != 0 ) {
++      while ( (nbytes = read(Dfile->FD, buf, LBUF)) != 0 ) {
 +         write(Dfile->FD_Write, buf, nbytes);
 +      }
 +
This page took 0.092296 seconds and 4 git commands to generate.