/* 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 ) );
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 ),