[Pkg-kde-commits] rev 360 - in branches/kde-3.3.2/kdenetwork/debian: . patches

Adeodato Sim?? dato-guest@haydn.debian.org
Mon, 20 Dec 2004 16:16:41 -0700


Author: dato-guest
Date: 2004-12-20 16:15:52 -0700 (Mon, 20 Dec 2004)
New Revision: 360

Added:
   branches/kde-3.3.2/kdenetwork/debian/patches/11_kpf-non-ascii-too.diff
Modified:
   branches/kde-3.3.2/kdenetwork/debian/changelog
Log:
    - added 11_kpf-non-ascii-too.diff, to make kpf produce valid links to
      files with non-ascii chars. (Trivial) Patch backported from CVS HEAD.
      (Closes: #285883)



Modified: branches/kde-3.3.2/kdenetwork/debian/changelog
===================================================================
--- branches/kde-3.3.2/kdenetwork/debian/changelog	2004-12-20 19:45:40 UTC (rev 359)
+++ branches/kde-3.3.2/kdenetwork/debian/changelog	2004-12-20 23:15:52 UTC (rev 360)
@@ -9,6 +9,9 @@
 
   * debian/patches:
     - dropped 11_kget.diff, fix included upstream.
+    - added 11_kpf-non-ascii-too.diff, to make kpf produce valid links to
+      files with non-ascii chars. (Trivial) Patch backported from CVS HEAD.
+      (Closes: #285883)
 
   +++ Changes by Christopher Martin:
 
@@ -20,7 +23,7 @@
     README.Debian to explain these changes and their security
     implications. (Closes: #126406, #203318)
 
- -- Adeodato Simó <asp16@alu.ua.es>  Sun, 19 Dec 2004 23:51:29 +0100
+ -- Adeodato Simó <asp16@alu.ua.es>  Tue, 21 Dec 2004 00:13:56 +0100
 
 kdenetwork (4:3.3.1-2) unstable; urgency=low
 

Added: branches/kde-3.3.2/kdenetwork/debian/patches/11_kpf-non-ascii-too.diff
===================================================================
--- branches/kde-3.3.2/kdenetwork/debian/patches/11_kpf-non-ascii-too.diff	2004-12-20 19:45:40 UTC (rev 359)
+++ branches/kde-3.3.2/kdenetwork/debian/patches/11_kpf-non-ascii-too.diff	2004-12-20 23:15:52 UTC (rev 360)
@@ -0,0 +1,10 @@
+--- kdenetwork-orig/kpf/src/Utils.cpp
++++ kdenetwork-patched/kpf/src/Utils.cpp
+@@ -519,7 +519,7 @@
+       }
+       else
+       {
+-        quoted += QString("%%1").arg(c, 0, 16);
++        quoted += QString("%%1").arg(uchar(c), 0, 16);
+       }
+     }