http://git.etherboot.org
/
gpxe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2be2f3b
)
Don't print "<NULL>" when we use imgautoselect().
author
Michael Brown
<mcb30@etherboot.org>
Fri, 12 Jan 2007 08:59:25 +0000
(08:59 +0000)
committer
Michael Brown
<mcb30@etherboot.org>
Fri, 12 Jan 2007 08:59:25 +0000
(08:59 +0000)
src/hci/commands/image_cmd.c
patch
|
blob
|
history
diff --git
a/src/hci/commands/image_cmd.c
b/src/hci/commands/image_cmd.c
index
8055f68
..
c40d42a
100644
(file)
--- a/
src/hci/commands/image_cmd.c
+++ b/
src/hci/commands/image_cmd.c
@@
-344,7
+344,8
@@
static int imgexec_exec ( int argc, char **argv ) {
}
if ( ( rc = imgexec ( image ) ) != 0 ) {
- printf ( "Could not execute %s: %s\n", name, strerror ( rc ) );
+ printf ( "Could not execute %s: %s\n",
+ image->name, strerror ( rc ) );
return 1;
}