Re: [PATCH] Fix for echo command on unrecognized options

2010-08-25 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 08/25/2010 01:16 PM, BVK Chaitanya wrote: > 2010/8/25 Vladimir 'φ-coder/phcoder' Serbinenko : > >> This patch parses options manually but still fails to replicate the >> 'echo' behaviour. >> 1) echo erere -n outputs "erere -n" >> > That is how echo in BASH seems to perform. Attached tes

Re: [PATCH] Fix for echo command on unrecognized options

2010-08-25 Thread BVK Chaitanya
2010/8/25 Vladimir 'φ-coder/phcoder' Serbinenko : > This patch parses options manually but still fails to replicate the > 'echo' behaviour. > 1) echo erere -n outputs "erere -n" That is how echo in BASH seems to perform. Attached testcase has this case included. -- bvk.chaitanya ___

Re: [PATCH] Fix for echo command on unrecognized options

2010-08-25 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 08/25/2010 06:35 AM, BVK Chaitanya wrote: > Hi, > > > Attached patch fixes echo command behavior for unrecognized options. > On BASH echo command passes all unrecognized options to the output, > this patch makes GRUB version to behave similarly. This bug has been > reported by Yves Blusseau (Jr

[PATCH] Fix for echo command on unrecognized options

2010-08-24 Thread BVK Chaitanya
Hi, Attached patch fixes echo command behavior for unrecognized options. On BASH echo command passes all unrecognized options to the output, this patch makes GRUB version to behave similarly. This bug has been reported by Yves Blusseau (JrCs). --- ChangeLog 2010-08-23 17:56:24 + +++ Chan