aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-12-17 18:52:06 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-12-17 18:52:06 +0000
commita38f75f49c5e4c4b3c2cd69cfdad78bd8febcb47 (patch)
treec6a103fc5ab4ae70032b6c75bb61fc5cfc231842
parent3132131d6265f6107c652f634c8b4a3e006fb46f (diff)
downloadbusybox-w32-a38f75f49c5e4c4b3c2cd69cfdad78bd8febcb47.tar.gz
busybox-w32-a38f75f49c5e4c4b3c2cd69cfdad78bd8febcb47.tar.bz2
busybox-w32-a38f75f49c5e4c4b3c2cd69cfdad78bd8febcb47.zip
Make head --version do the right thing. Update TODO list
-Erik git-svn-id: svn://busybox.net/trunk/busybox@244 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--TODO2
-rw-r--r--coreutils/head.c3
-rw-r--r--head.c3
3 files changed, 3 insertions, 5 deletions
diff --git a/TODO b/TODO
index 6c0471ed2..9648d9fdc 100644
--- a/TODO
+++ b/TODO
@@ -11,7 +11,7 @@ around to it some time. If you have any good ideas, please let me know.
11----------- 11-----------
12 12
13* Allow tar to create archives with sockets, devices, and other special files 13* Allow tar to create archives with sockets, devices, and other special files
14* Add in a mini insmod, rmmod, lsmod 14* Make insmod actually work
15* init clearly needs to support some type of minimalist /etc/inittab. I 15* init clearly needs to support some type of minimalist /etc/inittab. I
16 currently have _way_ too much policy hardcoded in the source. Adding 16 currently have _way_ too much policy hardcoded in the source. Adding
17 support for getty has made me realize how much that sucks. 17 support for getty has made me realize how much that sucks.
diff --git a/coreutils/head.c b/coreutils/head.c
index a9d024e62..7f08a8041 100644
--- a/coreutils/head.c
+++ b/coreutils/head.c
@@ -66,7 +66,6 @@ head_main(int argc, char **argv)
66 opt = argv[i][1]; 66 opt = argv[i][1];
67 switch (opt) { 67 switch (opt) {
68 case '-': 68 case '-':
69 break;
70 case 'h': 69 case 'h':
71 usage(head_usage); 70 usage(head_usage);
72 default: 71 default:
@@ -104,4 +103,4 @@ head_main(int argc, char **argv)
104 exit(0); 103 exit(0);
105} 104}
106 105
107/* $Id: head.c,v 1.3 1999/12/15 19:29:09 beppu Exp $ */ 106/* $Id: head.c,v 1.4 1999/12/17 18:52:06 erik Exp $ */
diff --git a/head.c b/head.c
index a9d024e62..7f08a8041 100644
--- a/head.c
+++ b/head.c
@@ -66,7 +66,6 @@ head_main(int argc, char **argv)
66 opt = argv[i][1]; 66 opt = argv[i][1];
67 switch (opt) { 67 switch (opt) {
68 case '-': 68 case '-':
69 break;
70 case 'h': 69 case 'h':
71 usage(head_usage); 70 usage(head_usage);
72 default: 71 default:
@@ -104,4 +103,4 @@ head_main(int argc, char **argv)
104 exit(0); 103 exit(0);
105} 104}
106 105
107/* $Id: head.c,v 1.3 1999/12/15 19:29:09 beppu Exp $ */ 106/* $Id: head.c,v 1.4 1999/12/17 18:52:06 erik Exp $ */