summaryrefslogtreecommitdiff
path: root/debian/patches/0010-ppd_trailing_whitespace.patch
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-12-05 14:58:37 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-12-05 14:58:37 +0100
commita19a390f6538d9df8f125d7498a2e5df57612387 (patch)
tree8368ee073c9d81f711ec5500b0e12198914dba12 /debian/patches/0010-ppd_trailing_whitespace.patch
parent314e87026787b907f8fc77f44e1b5ce79cb9528f (diff)
CVE-2015-8327; rename patches
Diffstat (limited to 'debian/patches/0010-ppd_trailing_whitespace.patch')
-rw-r--r--debian/patches/0010-ppd_trailing_whitespace.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/patches/0010-ppd_trailing_whitespace.patch b/debian/patches/0010-ppd_trailing_whitespace.patch
deleted file mode 100644
index 7efd6ac..0000000
--- a/debian/patches/0010-ppd_trailing_whitespace.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Description: remove trailing whitespaces from ppd files
- Remove trailing whitespaces from ppd file to prevent segfault
-Author: Jörg Frings-Fürst <debian@jff-webhosting.net>
-Bug: https://bugs.linuxfoundation.org/show_bug.cgi?id=1227
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=758133
-Forwarded: https://bugs.linuxfoundation.org/show_bug.cgi?id=1227
-Last-Update: 2014-08-23
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-Index: trunk/options.c
-===================================================================
---- trunk.orig/options.c 2014-08-17 09:56:36.990949026 +0200
-+++ trunk/options.c 2014-08-17 09:59:43.750779956 +0200
-@@ -1628,6 +1628,10 @@
- /* remove last newline */
- dstrremovenewline(value);
-
-+ /* remove last whitespace */
-+ /* new 2014-08-17 */
-+ dstrtrim_right(value);
-+
- /* process key/value pairs */
- if (strcmp(key, "NickName") == 0) {
- unhtmlify(printer_model, 256, value->data);