[BusyBox-cvs] busybox/networking/udhcp dhcpc.c,1.8,1.9

Manuel Novoa III mjn3 at busybox.net
Wed Mar 19 09:13:21 UTC 2003


Update of /var/cvs/busybox/networking/udhcp
In directory winder:/home/mjn3/work/busybox/networking/udhcp

Modified Files:
	dhcpc.c 
Log Message:
Major coreutils update.


Index: dhcpc.c
===================================================================
RCS file: /var/cvs/busybox/networking/udhcp/dhcpc.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- dhcpc.c	15 Feb 2003 11:50:33 -0000	1.8
+++ dhcpc.c	19 Mar 2003 09:12:46 -0000	1.9
@@ -81,7 +81,7 @@
 };
 
 #ifndef IN_BUSYBOX
-static void __attribute__ ((noreturn)) show_usage(void)
+static void __attribute__ ((noreturn)) bb_show_usage(void)
 {
 	printf(
 "Usage: udhcpc [OPTIONS]\n\n"
@@ -104,7 +104,7 @@
 	exit(0);
 }
 #else
-extern void show_usage(void) __attribute__ ((noreturn));
+extern void bb_show_usage(void) __attribute__ ((noreturn));
 #endif
 
 
@@ -298,7 +298,7 @@
 			exit_client(0);
 			break;
 		default:
-			show_usage();
+			bb_show_usage();
 		}
 	}
 




More information about the busybox-cvs mailing list