Merge with /home/sr/git/u-boot/avr32
diff --git a/CHANGELOG b/CHANGELOG index e3ab621..a2ea35d 100644 --- a/CHANGELOG +++ b/CHANGELOG
@@ -7,6 +7,9 @@ make cmd_bootm recognize them. Patch by Haavard Skinnemoen, 22 Sep 2006 +* Fix buffer overflow problem in ft_build.c + Patch by Fredrik Roubert, 09 Oct 2006 + * Make bootp implementation RFC3046 compliant Patch by Joakim Larsson, 27 Jun 2006
diff --git a/common/ft_build.c b/common/ft_build.c index 9e9c906..b0560a2 100644 --- a/common/ft_build.c +++ b/common/ft_build.c
@@ -293,7 +293,9 @@ return; if (is_printable_string(data, len)) { - printf(" = \"%s\"", (char *)data); + puts(" = \""); + puts(data); + puts("\""); return; }