crcsum: remove the -b option since ext2fs_crc32c_be is dropped in 1.43.x

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
debian-1.42.9
Theodore Ts'o 2013-04-22 00:04:36 -04:00
parent 572ef60b89
commit 9bd95a472c
1 changed files with 3 additions and 5 deletions

View File

@ -35,13 +35,11 @@ int main(int argc, char **argv)
csum_func = ext2fs_crc32c_le;
while ((c = getopt (argc, argv, "B")) != EOF) {
while ((c = getopt (argc, argv, "h")) != EOF) {
switch (c) {
case 'B':
csum_func = ext2fs_crc32c_be;
break;
case 'h':
default:
com_err(argv[0], 0, "Usage: crcsum [-b] [file]\n");
com_err(argv[0], 0, "Usage: crcsum [file]\n");
return 1;
}
}