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,8 +134,6 @@ static int imgfetch_core_exec ( struct image_type *image_type, int load,
134 134
 	/* Fill in command line */
135 135
 	imgfill_cmdline ( image, ( argc - optind ), &argv[optind] );
136 136
 
137
-	printf ( "name = %s, filename = %s\n", name, filename );
138
-	
139 137
 	/* Fetch the image */
140 138
 	if ( ( rc = imgfetch ( image, filename, load ) ) != 0 ) {
141 139
 		printf ( "Could not fetch %s: %s\n", name, strerror ( rc ) );

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

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

Loading…
Cancel
Save