diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-22 22:48:42 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-22 22:48:42 +0000 |
commit | 6705986f2702dfa3b9dd6247d7558da90f184abc (patch) | |
tree | f37392df1a4e6dee212b4ac7b3caeb0d211c83f4 | |
parent | 6d0921cc0bb01b1d090285c487f8c1120dfa5d3a (diff) | |
download | busybox-6705986f2702dfa3b9dd6247d7558da90f184abc.tar.gz |
Warn about apps that will be going away in release 0.50
-Erik
-rw-r--r-- | coreutils/hostid.c | 4 | ||||
-rw-r--r-- | hostid.c | 4 | ||||
-rw-r--r-- | hostname.c | 6 | ||||
-rw-r--r-- | nc.c | 5 | ||||
-rw-r--r-- | networking/hostname.c | 6 | ||||
-rw-r--r-- | networking/nc.c | 5 | ||||
-rw-r--r-- | networking/nslookup.c | 6 | ||||
-rw-r--r-- | networking/ping.c | 6 | ||||
-rw-r--r-- | networking/telnet.c | 4 | ||||
-rw-r--r-- | networking/wget.c | 6 | ||||
-rw-r--r-- | nslookup.c | 6 | ||||
-rw-r--r-- | ping.c | 6 | ||||
-rw-r--r-- | telnet.c | 4 | ||||
-rw-r--r-- | wget.c | 6 |
14 files changed, 66 insertions, 8 deletions
diff --git a/coreutils/hostid.c b/coreutils/hostid.c index 35a5859c4..5bbb46f7e 100644 --- a/coreutils/hostid.c +++ b/coreutils/hostid.c @@ -20,6 +20,10 @@ * */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <stdio.h> @@ -20,6 +20,10 @@ * */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <stdio.h> diff --git a/hostname.c b/hostname.c index c64d1602b..560db7b86 100644 --- a/hostname.c +++ b/hostname.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: hostname.c,v 1.17 2000/12/22 01:48:07 kraai Exp $ + * $Id: hostname.c,v 1.18 2001/01/22 22:48:42 andersen Exp $ * Mini hostname implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -23,6 +23,10 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <errno.h> #include <arpa/inet.h> @@ -25,6 +25,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <stdio.h> #include <stdlib.h> diff --git a/networking/hostname.c b/networking/hostname.c index c64d1602b..560db7b86 100644 --- a/networking/hostname.c +++ b/networking/hostname.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: hostname.c,v 1.17 2000/12/22 01:48:07 kraai Exp $ + * $Id: hostname.c,v 1.18 2001/01/22 22:48:42 andersen Exp $ * Mini hostname implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -23,6 +23,10 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <errno.h> #include <arpa/inet.h> diff --git a/networking/nc.c b/networking/nc.c index a2be8ec46..83e1a9c42 100644 --- a/networking/nc.c +++ b/networking/nc.c @@ -25,6 +25,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <stdio.h> #include <stdlib.h> diff --git a/networking/nslookup.c b/networking/nslookup.c index 5a6387d79..16162b540 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c @@ -21,6 +21,10 @@ * */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <ctype.h> #include <errno.h> @@ -169,4 +173,4 @@ int nslookup_main(int argc, char **argv) return EXIT_SUCCESS; } -/* $Id: nslookup.c,v 1.15 2001/01/20 21:51:21 andersen Exp $ */ +/* $Id: nslookup.c,v 1.16 2001/01/22 22:48:42 andersen Exp $ */ diff --git a/networking/ping.c b/networking/ping.c index e9242e9b7..8276dda4b 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: ping.c,v 1.30 2000/12/22 01:48:07 kraai Exp $ + * $Id: ping.c,v 1.31 2001/01/22 22:48:42 andersen Exp $ * Mini ping implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -31,6 +31,10 @@ * Original copyright notice is retained at the end of this file. */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <sys/param.h> #include <sys/socket.h> diff --git a/networking/telnet.c b/networking/telnet.c index 54f25c4bc..76956e9ac 100644 --- a/networking/telnet.c +++ b/networking/telnet.c @@ -30,6 +30,10 @@ * */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <termios.h> diff --git a/networking/wget.c b/networking/wget.c index 0745a9e99..a5c3e7baf 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -14,6 +14,10 @@ * */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <stdio.h> #include <stdlib.h> @@ -511,7 +515,7 @@ progressmeter(int flag) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: wget.c,v 1.16 2001/01/20 20:07:00 andersen Exp $ + * $Id: wget.c,v 1.17 2001/01/22 22:48:42 andersen Exp $ */ diff --git a/nslookup.c b/nslookup.c index 5a6387d79..16162b540 100644 --- a/nslookup.c +++ b/nslookup.c @@ -21,6 +21,10 @@ * */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <ctype.h> #include <errno.h> @@ -169,4 +173,4 @@ int nslookup_main(int argc, char **argv) return EXIT_SUCCESS; } -/* $Id: nslookup.c,v 1.15 2001/01/20 21:51:21 andersen Exp $ */ +/* $Id: nslookup.c,v 1.16 2001/01/22 22:48:42 andersen Exp $ */ @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: ping.c,v 1.30 2000/12/22 01:48:07 kraai Exp $ + * $Id: ping.c,v 1.31 2001/01/22 22:48:42 andersen Exp $ * Mini ping implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -31,6 +31,10 @@ * Original copyright notice is retained at the end of this file. */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <sys/param.h> #include <sys/socket.h> @@ -30,6 +30,10 @@ * */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <termios.h> @@ -14,6 +14,10 @@ * */ +#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this +#warning applet will be removed from BusyBox. All maintainence efforts +#warning should be done in the netkit-tiny source tree. + #include "busybox.h" #include <stdio.h> #include <stdlib.h> @@ -511,7 +515,7 @@ progressmeter(int flag) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: wget.c,v 1.16 2001/01/20 20:07:00 andersen Exp $ + * $Id: wget.c,v 1.17 2001/01/22 22:48:42 andersen Exp $ */ |