]> git.pld-linux.org Git - packages/autofs.git/blame - autofs-5.0.4-fix-quoted-mess.patch
- import latest patchset.
[packages/autofs.git] / autofs-5.0.4-fix-quoted-mess.patch
CommitLineData
e5fd101c
PS
1autofs-5.0.4 - clear the quoted flag after each character
2
3From: Jeff Moyer <jmoyer@redhat.com>
4
5This regression was introduced by autofs-5.0.4-fix-select-fd-limit.patch.
6The fix is to clear the quoted flag after processing each character from
7program map input.
8---
9
10 CHANGELOG | 1 +
11 modules/lookup_program.c | 1 +
12 2 files changed, 2 insertions(+), 0 deletions(-)
13
14
15diff --git a/CHANGELOG b/CHANGELOG
16index 912c088..af77b55 100644
17--- a/CHANGELOG
18+++ b/CHANGELOG
19@@ -7,6 +7,7 @@
20 - fix select(2) fd limit.
21 - make hash table scale to thousands of entries (Paul Wankadia,
22 Valerie Aurora Henson).
23+- clear the quoted flag after each character from program map input.
24
25 4/11/2008 autofs-5.0.4
26 -----------------------
27diff --git a/modules/lookup_program.c b/modules/lookup_program.c
28index f62d3ef..9878936 100644
29--- a/modules/lookup_program.c
30+++ b/modules/lookup_program.c
31@@ -341,6 +341,7 @@ cont:
32 /* Eat characters till there's no more output */
33 break;
34 }
35+ quoted = 0;
36 goto cont;
37 }
38 quoted = 0;
This page took 0.089721 seconds and 4 git commands to generate.