diff options
author | Rob Landley <rob@landley.net> | 2006-09-14 05:27:28 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-09-14 05:27:28 +0000 |
commit | cc9962d7fb3bcd109f02fdaf76028d8e87e11951 (patch) | |
tree | 96fef3d10eaed819bbba86b13edb892bc97e1c47 /util-linux | |
parent | 73810e8d42de2f891defc867b3557d9a8d6ecefc (diff) | |
download | busybox-w32-cc9962d7fb3bcd109f02fdaf76028d8e87e11951.tar.gz busybox-w32-cc9962d7fb3bcd109f02fdaf76028d8e87e11951.tar.bz2 busybox-w32-cc9962d7fb3bcd109f02fdaf76028d8e87e11951.zip |
More code from kernel developers, and therefore licensed under GPLv2 only.
Clarify the license boilerplate.
On an unrelated note, this could use busyboxification. check_mount() looks
reusable and ask() is generic...
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fsck_minix.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index da22744c3..c0dda2f1f 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c | |||
@@ -2,8 +2,9 @@ | |||
2 | /* | 2 | /* |
3 | * fsck.c - a file system consistency checker for Linux. | 3 | * fsck.c - a file system consistency checker for Linux. |
4 | * | 4 | * |
5 | * (C) 1991, 1992 Linus Torvalds. This file may be redistributed | 5 | * (C) 1991, 1992 Linus Torvalds. |
6 | * as per the GNU copyleft. | 6 | * |
7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
7 | */ | 8 | */ |
8 | 9 | ||
9 | /* | 10 | /* |
@@ -86,17 +87,8 @@ | |||
86 | * enforced (but it's not much fun on a character device :-). | 87 | * enforced (but it's not much fun on a character device :-). |
87 | */ | 88 | */ |
88 | 89 | ||
89 | #include <stdio.h> | ||
90 | #include <errno.h> | ||
91 | #include <unistd.h> | ||
92 | #include <string.h> | ||
93 | #include <fcntl.h> | ||
94 | #include <ctype.h> | ||
95 | #include <stdlib.h> | ||
96 | #include <termios.h> | ||
97 | #include <mntent.h> | ||
98 | #include <sys/param.h> | ||
99 | #include "busybox.h" | 90 | #include "busybox.h" |
91 | #include <mntent.h> | ||
100 | 92 | ||
101 | /* | 93 | /* |
102 | * This is the original minix inode layout on disk. | 94 | * This is the original minix inode layout on disk. |