]> git.pld-linux.org Git - packages/autofs.git/blob - autofs-5.0.2-fix-dnattr-parse.patch
- 5.0.3 with few official patches. ldap fixes needed
[packages/autofs.git] / autofs-5.0.2-fix-dnattr-parse.patch
1 diff --git a/CHANGELOG b/CHANGELOG
2 index 1bf4b27..678e764 100644
3 --- a/CHANGELOG
4 +++ b/CHANGELOG
5 @@ -10,6 +10,7 @@
6  - add quoting for exports gathered by hosts map.
7  - fix wait time resolution in alarm and state queue handlers.
8  - fix handling of quoted slash alone.
9 +- fix parse confusion between attribute and attribute value.
10  
11  18/06/2007 autofs-5.0.2
12  -----------------------
13 diff --git a/lib/master_tok.l b/lib/master_tok.l
14 index 9bfeefa..ff69a24 100644
15 --- a/lib/master_tok.l
16 +++ b/lib/master_tok.l
17 @@ -272,7 +272,7 @@ OPTTOUT             (-t{OPTWS}|-t{OPTWS}={OPTWS}|--timeout{OPTWS}|--timeout{OPTWS}={OPTWS})
18                 return DNSERVER;
19         }
20  
21 -       {DNATTRSTR} {
22 +       {DNATTRSTR}/"=" {
23                 strcpy(master_lval.strtype, master_text);
24                 return DNATTR;
25         }
This page took 0.050334 seconds and 3 git commands to generate.