This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RedBoot - remove noisy print in BOOTP code


-- 
Gary Thomas <gary@mlbassoc.com>
MLB Associates
Index: redboot/current/ChangeLog
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/redboot/current/ChangeLog,v
retrieving revision 1.163
diff -u -5 -p -r1.163 ChangeLog
--- redboot/current/ChangeLog	24 Nov 2003 12:17:50 -0000	1.163
+++ redboot/current/ChangeLog	24 Nov 2003 14:18:33 -0000
@@ -1,5 +1,10 @@
+2003-11-24  Gary Thomas  <gary@mlbassoc.com>
+
+	* src/net/bootp.c (__bootp_find_local_ip): 
+	Suppress diagnostic message that DNS info found.
+
 2002-11-24  Jani Monoses  <jani@iv.ro>
 
 	* src/flash.c: Remove references to FLASH_MIN_WORKSPACE.
 	
 2002-11-20  Jani Monoses  <jani@iv.ro>
Index: redboot/current/src/net/bootp.c
===================================================================
RCS file: /misc/cvsfiles/ecos/packages/redboot/current/src/net/bootp.c,v
retrieving revision 1.20
diff -u -5 -p -r1.20 bootp.c
--- redboot/current/src/net/bootp.c	7 Nov 2003 18:14:10 -0000	1.20
+++ redboot/current/src/net/bootp.c	22 Nov 2003 13:29:17 -0000
@@ -288,11 +288,11 @@ __bootp_find_local_ip(bootp_header_t *in
                                 memcpy(__local_ip_gate,p,4); 
                                 break;
 #endif
 #ifdef CYGPKG_REDBOOT_NETWORKING_DNS
 			    case TAG_DOMAIN_SERVER:
-				diag_printf(" DNS server found!\n");
+//				diag_printf(" DNS server found!\n");
 				memcpy(&__bootp_dns_addr, p, 4);
 				__bootp_dns_set = 1;
 				break;
 #endif
                             default:

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]