Re: [U-Boot] [PATCH 3/5] readline(): Add ability to modify a string buffer

2009-10-24 Thread Mike Frysinger
On Saturday 24 October 2009 17:47:27 Peter Tyser wrote: > Wolfgang Denk wrote: > > Peter Tyser wrote: > >> If the 'buf' parameter is a non-0-length string, its contents will be > >> edited. Previously, the initial value of 'buf' was ignored and the > >> user entered its contents from scratch. > >

Re: [U-Boot] [PATCH 3/5] readline(): Add ability to modify a string buffer

2009-10-24 Thread Peter Tyser
Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <1256259563-32725-3-git-send-email-pty...@xes-inc.com> you wrote: >> If the 'buf' parameter is a non-0-length string, its contents will be >> edited. Previously, the initial value of 'buf' was ignored and the >> user entered its contents fro

Re: [U-Boot] [PATCH 3/5] readline(): Add ability to modify a string buffer

2009-10-24 Thread Wolfgang Denk
Dear Peter Tyser, In message <1256259563-32725-3-git-send-email-pty...@xes-inc.com> you wrote: > If the 'buf' parameter is a non-0-length string, its contents will be > edited. Previously, the initial value of 'buf' was ignored and the > user entered its contents from scratch. What is the purpos

[U-Boot] [PATCH 3/5] readline(): Add ability to modify a string buffer

2009-10-22 Thread Peter Tyser
If the 'buf' parameter is a non-0-length string, its contents will be edited. Previously, the initial value of 'buf' was ignored and the user entered its contents from scratch. Signed-off-by: Peter Tyser --- common/main.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) dif