]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix quoting bug introduced by commit 74de7aef
authorWolfgang Denk <wd@denx.de>
Sat, 4 Apr 2009 14:57:50 +0000 (16:57 +0200)
committerWolfgang Denk <wd@denx.de>
Sat, 4 Apr 2009 15:58:26 +0000 (17:58 +0200)
Signed-off-by: Wolfgang Denk <wd@denx.de>
board/pn62/cmd_pn62.c
common/cmd_load.c
common/cmd_net.c

index b9f3bdb94ea22cd6a73d5d8246541a8e3970855a..ff5d63ee121bb234f15c3409cd2458f6c7a2c795 100644 (file)
@@ -157,7 +157,7 @@ int do_loadpci (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
        char *s;
 
        if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
-               printf ("Running "source" command at addr 0x%08lX",
+               printf ("Running \"source\" command at addr 0x%08lX",
                        load_addr);
 
                s = getenv ("autoscript_uname");
index d5eaac7351c5c2d043db48b30f15cff9eb25f8e8..2b5a66dd6fb543ff97580c022ca867493d570f89 100644 (file)
@@ -518,7 +518,7 @@ int do_load_serial_bin (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                char *s;
 
                if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
-                       printf ("Running "source" command at addr 0x%08lX",
+                       printf ("Running \"source\" command at addr 0x%08lX",
                                load_addr);
 
                        s = getenv ("autoscript_uname");
index 9bef7a2049e9013e8c062efbaa537b5cfe197f59..92bbf85d1139a4acdf2df3670070a0d6059bec63 100644 (file)
@@ -224,7 +224,7 @@ netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char *argv[])
 
 #ifdef CONFIG_SOURCE
        if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
-               printf ("Running "source" command at addr 0x%08lX",
+               printf ("Running \"source\" command at addr 0x%08lX",
                        load_addr);
 
                s = getenv ("autoscript_uname");