Browse Source

Removed debugging statements that should not have been checked in.

tags/v0.9.3
Michael Brown 17 years ago
parent
commit
e4c9c91d6e
2 changed files with 0 additions and 4 deletions
  1. 0
    2
      src/hci/commands/image_cmd.c
  2. 0
    2
      src/usr/imgmgmt.c

+ 0
- 2
src/hci/commands/image_cmd.c View File

134
 	/* Fill in command line */
134
 	/* Fill in command line */
135
 	imgfill_cmdline ( image, ( argc - optind ), &argv[optind] );
135
 	imgfill_cmdline ( image, ( argc - optind ), &argv[optind] );
136
 
136
 
137
-	printf ( "name = %s, filename = %s\n", name, filename );
138
-	
139
 	/* Fetch the image */
137
 	/* Fetch the image */
140
 	if ( ( rc = imgfetch ( image, filename, load ) ) != 0 ) {
138
 	if ( ( rc = imgfetch ( image, filename, load ) ) != 0 ) {
141
 		printf ( "Could not fetch %s: %s\n", name, strerror ( rc ) );
139
 		printf ( "Could not fetch %s: %s\n", name, strerror ( rc ) );

+ 0
- 2
src/usr/imgmgmt.c View File

55
 int imgfetch ( struct image *image, const char *uri_string, int load ) {
55
 int imgfetch ( struct image *image, const char *uri_string, int load ) {
56
 	int rc;
56
 	int rc;
57
 
57
 
58
-	printf ( "uri_string = %s\n", uri_string );
59
-
60
 	if ( ( rc = create_downloader ( &monojob, image, 
58
 	if ( ( rc = create_downloader ( &monojob, image, 
61
 					( load ? imgfetch_autoload :
59
 					( load ? imgfetch_autoload :
62
 					  register_image ),
60
 					  register_image ),

Loading…
Cancel
Save