david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Removed debugging statements that should not have been checked in.

This commit is contained in:
Michael Brown 2007-06-28 17:57:10 +01:00
parent 4b08f4cf0f
commit e4c9c91d6e
2 changed files with 0 additions and 4 deletions

View File

@ -134,8 +134,6 @@ static int imgfetch_core_exec ( struct image_type *image_type, int load,
/* Fill in command line */
imgfill_cmdline ( image, ( argc - optind ), &argv[optind] );
printf ( "name = %s, filename = %s\n", name, filename );
/* Fetch the image */
if ( ( rc = imgfetch ( image, filename, load ) ) != 0 ) {
printf ( "Could not fetch %s: %s\n", name, strerror ( rc ) );

View File

@ -55,8 +55,6 @@ static int imgfetch_autoload ( struct image *image ) {
int imgfetch ( struct image *image, const char *uri_string, int load ) {
int rc;
printf ( "uri_string = %s\n", uri_string );
if ( ( rc = create_downloader ( &monojob, image,
( load ? imgfetch_autoload :
register_image ),