summaryrefslogtreecommitdiff
path: root/scheduler/process.c
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2017-09-13 11:53:50 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2017-09-13 11:53:56 +0900
commit5ed126d6de36f982f1f800f54d468dac5730050d (patch)
treee879d7ec04890d2b5395408fee767ff8e7fde2a1 /scheduler/process.c
parent1465a9590ad148bed86bf8930007467ad37f7ac0 (diff)
downloadcups-5ed126d6de36f982f1f800f54d468dac5730050d.tar.gz
cups-5ed126d6de36f982f1f800f54d468dac5730050d.tar.bz2
cups-5ed126d6de36f982f1f800f54d468dac5730050d.zip
Imported Upstream version 2.2.3
Change-Id: I3d6e094a6bcee5cd32563c3b4b9e77d653a4949d Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'scheduler/process.c')
-rw-r--r--scheduler/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scheduler/process.c b/scheduler/process.c
index cf67e74..27e8010 100644
--- a/scheduler/process.c
+++ b/scheduler/process.c
@@ -1,7 +1,7 @@
/*
* Process management routines for the CUPS scheduler.
*
- * Copyright 2007-2015 by Apple Inc.
+ * Copyright 2007-2017 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
@@ -874,7 +874,7 @@ cupsd_requote(char *dst, /* I - Destination buffer */
if (ch == '/' && !*src)
break; /* Don't add trailing slash */
- if (strchr(".?*()[]^$\\", ch))
+ if (strchr(".?*()[]^$\\\"", ch))
*dstptr++ = '\\';
*dstptr++ = (char)ch;