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-w32-6705986f2702dfa3b9dd6247d7558da90f184abc.tar.gz busybox-w32-6705986f2702dfa3b9dd6247d7558da90f184abc.tar.bz2 busybox-w32-6705986f2702dfa3b9dd6247d7558da90f184abc.zip |
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 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
24 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
25 | #warning should be done in the netkit-tiny source tree. | ||
26 | |||
23 | #include "busybox.h" | 27 | #include "busybox.h" |
24 | #include <stdio.h> | 28 | #include <stdio.h> |
25 | 29 | ||
@@ -20,6 +20,10 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
24 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
25 | #warning should be done in the netkit-tiny source tree. | ||
26 | |||
23 | #include "busybox.h" | 27 | #include "busybox.h" |
24 | #include <stdio.h> | 28 | #include <stdio.h> |
25 | 29 | ||
diff --git a/hostname.c b/hostname.c index c64d1602b..560db7b86 100644 --- a/hostname.c +++ b/hostname.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * $Id: hostname.c,v 1.17 2000/12/22 01:48:07 kraai Exp $ | 3 | * $Id: hostname.c,v 1.18 2001/01/22 22:48:42 andersen Exp $ |
4 | * Mini hostname implementation for busybox | 4 | * Mini hostname implementation for busybox |
5 | * | 5 | * |
6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> | 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
@@ -23,6 +23,10 @@ | |||
23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
27 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
28 | #warning should be done in the netkit-tiny source tree. | ||
29 | |||
26 | #include "busybox.h" | 30 | #include "busybox.h" |
27 | #include <errno.h> | 31 | #include <errno.h> |
28 | #include <arpa/inet.h> | 32 | #include <arpa/inet.h> |
@@ -25,6 +25,11 @@ | |||
25 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 25 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
26 | 26 | ||
27 | */ | 27 | */ |
28 | |||
29 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
30 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
31 | #warning should be done in the netkit-tiny source tree. | ||
32 | |||
28 | #include "busybox.h" | 33 | #include "busybox.h" |
29 | #include <stdio.h> | 34 | #include <stdio.h> |
30 | #include <stdlib.h> | 35 | #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 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * $Id: hostname.c,v 1.17 2000/12/22 01:48:07 kraai Exp $ | 3 | * $Id: hostname.c,v 1.18 2001/01/22 22:48:42 andersen Exp $ |
4 | * Mini hostname implementation for busybox | 4 | * Mini hostname implementation for busybox |
5 | * | 5 | * |
6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> | 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
@@ -23,6 +23,10 @@ | |||
23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
27 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
28 | #warning should be done in the netkit-tiny source tree. | ||
29 | |||
26 | #include "busybox.h" | 30 | #include "busybox.h" |
27 | #include <errno.h> | 31 | #include <errno.h> |
28 | #include <arpa/inet.h> | 32 | #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 @@ | |||
25 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 25 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
26 | 26 | ||
27 | */ | 27 | */ |
28 | |||
29 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
30 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
31 | #warning should be done in the netkit-tiny source tree. | ||
32 | |||
28 | #include "busybox.h" | 33 | #include "busybox.h" |
29 | #include <stdio.h> | 34 | #include <stdio.h> |
30 | #include <stdlib.h> | 35 | #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 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
25 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
26 | #warning should be done in the netkit-tiny source tree. | ||
27 | |||
24 | #include "busybox.h" | 28 | #include "busybox.h" |
25 | #include <ctype.h> | 29 | #include <ctype.h> |
26 | #include <errno.h> | 30 | #include <errno.h> |
@@ -169,4 +173,4 @@ int nslookup_main(int argc, char **argv) | |||
169 | return EXIT_SUCCESS; | 173 | return EXIT_SUCCESS; |
170 | } | 174 | } |
171 | 175 | ||
172 | /* $Id: nslookup.c,v 1.15 2001/01/20 21:51:21 andersen Exp $ */ | 176 | /* $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 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * $Id: ping.c,v 1.30 2000/12/22 01:48:07 kraai Exp $ | 3 | * $Id: ping.c,v 1.31 2001/01/22 22:48:42 andersen Exp $ |
4 | * Mini ping implementation for busybox | 4 | * Mini ping implementation for busybox |
5 | * | 5 | * |
6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> | 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
@@ -31,6 +31,10 @@ | |||
31 | * Original copyright notice is retained at the end of this file. | 31 | * Original copyright notice is retained at the end of this file. |
32 | */ | 32 | */ |
33 | 33 | ||
34 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
35 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
36 | #warning should be done in the netkit-tiny source tree. | ||
37 | |||
34 | #include "busybox.h" | 38 | #include "busybox.h" |
35 | #include <sys/param.h> | 39 | #include <sys/param.h> |
36 | #include <sys/socket.h> | 40 | #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 @@ | |||
30 | * | 30 | * |
31 | */ | 31 | */ |
32 | 32 | ||
33 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
34 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
35 | #warning should be done in the netkit-tiny source tree. | ||
36 | |||
33 | 37 | ||
34 | #include "busybox.h" | 38 | #include "busybox.h" |
35 | #include <termios.h> | 39 | #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 @@ | |||
14 | * | 14 | * |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
18 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
19 | #warning should be done in the netkit-tiny source tree. | ||
20 | |||
17 | #include "busybox.h" | 21 | #include "busybox.h" |
18 | #include <stdio.h> | 22 | #include <stdio.h> |
19 | #include <stdlib.h> | 23 | #include <stdlib.h> |
@@ -511,7 +515,7 @@ progressmeter(int flag) | |||
511 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 515 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
512 | * SUCH DAMAGE. | 516 | * SUCH DAMAGE. |
513 | * | 517 | * |
514 | * $Id: wget.c,v 1.16 2001/01/20 20:07:00 andersen Exp $ | 518 | * $Id: wget.c,v 1.17 2001/01/22 22:48:42 andersen Exp $ |
515 | */ | 519 | */ |
516 | 520 | ||
517 | 521 | ||
diff --git a/nslookup.c b/nslookup.c index 5a6387d79..16162b540 100644 --- a/nslookup.c +++ b/nslookup.c | |||
@@ -21,6 +21,10 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
25 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
26 | #warning should be done in the netkit-tiny source tree. | ||
27 | |||
24 | #include "busybox.h" | 28 | #include "busybox.h" |
25 | #include <ctype.h> | 29 | #include <ctype.h> |
26 | #include <errno.h> | 30 | #include <errno.h> |
@@ -169,4 +173,4 @@ int nslookup_main(int argc, char **argv) | |||
169 | return EXIT_SUCCESS; | 173 | return EXIT_SUCCESS; |
170 | } | 174 | } |
171 | 175 | ||
172 | /* $Id: nslookup.c,v 1.15 2001/01/20 21:51:21 andersen Exp $ */ | 176 | /* $Id: nslookup.c,v 1.16 2001/01/22 22:48:42 andersen Exp $ */ |
@@ -1,6 +1,6 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * $Id: ping.c,v 1.30 2000/12/22 01:48:07 kraai Exp $ | 3 | * $Id: ping.c,v 1.31 2001/01/22 22:48:42 andersen Exp $ |
4 | * Mini ping implementation for busybox | 4 | * Mini ping implementation for busybox |
5 | * | 5 | * |
6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> | 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
@@ -31,6 +31,10 @@ | |||
31 | * Original copyright notice is retained at the end of this file. | 31 | * Original copyright notice is retained at the end of this file. |
32 | */ | 32 | */ |
33 | 33 | ||
34 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
35 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
36 | #warning should be done in the netkit-tiny source tree. | ||
37 | |||
34 | #include "busybox.h" | 38 | #include "busybox.h" |
35 | #include <sys/param.h> | 39 | #include <sys/param.h> |
36 | #include <sys/socket.h> | 40 | #include <sys/socket.h> |
@@ -30,6 +30,10 @@ | |||
30 | * | 30 | * |
31 | */ | 31 | */ |
32 | 32 | ||
33 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
34 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
35 | #warning should be done in the netkit-tiny source tree. | ||
36 | |||
33 | 37 | ||
34 | #include "busybox.h" | 38 | #include "busybox.h" |
35 | #include <termios.h> | 39 | #include <termios.h> |
@@ -14,6 +14,10 @@ | |||
14 | * | 14 | * |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #warning This applet has moved to netkit-tiny. After BusyBox 0.49, this | ||
18 | #warning applet will be removed from BusyBox. All maintainence efforts | ||
19 | #warning should be done in the netkit-tiny source tree. | ||
20 | |||
17 | #include "busybox.h" | 21 | #include "busybox.h" |
18 | #include <stdio.h> | 22 | #include <stdio.h> |
19 | #include <stdlib.h> | 23 | #include <stdlib.h> |
@@ -511,7 +515,7 @@ progressmeter(int flag) | |||
511 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 515 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
512 | * SUCH DAMAGE. | 516 | * SUCH DAMAGE. |
513 | * | 517 | * |
514 | * $Id: wget.c,v 1.16 2001/01/20 20:07:00 andersen Exp $ | 518 | * $Id: wget.c,v 1.17 2001/01/22 22:48:42 andersen Exp $ |
515 | */ | 519 | */ |
516 | 520 | ||
517 | 521 | ||