diff options
-rw-r--r-- | util-linux/losetup.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/util-linux/losetup.c b/util-linux/losetup.c index 24639ad1c..f03889663 100644 --- a/util-linux/losetup.c +++ b/util-linux/losetup.c | |||
@@ -3,20 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2002 Matt Kraai. | 4 | * Copyright (C) 2002 Matt Kraai. |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | * | ||
20 | */ | 7 | */ |
21 | 8 | ||
22 | #include <getopt.h> | 9 | #include <getopt.h> |
@@ -39,7 +26,7 @@ die_failed: | |||
39 | bb_perror_msg_and_die("%s",argv[optind]); | 26 | bb_perror_msg_and_die("%s",argv[optind]); |
40 | 27 | ||
41 | case 'o': | 28 | case 'o': |
42 | offset = atol(optarg); | 29 | offset = bb_xparse_number (optarg, NULL); |
43 | /* Fall through to do the losetup */ | 30 | /* Fall through to do the losetup */ |
44 | case -1: | 31 | case -1: |
45 | /* losetup takes two argument:, loop_device and file */ | 32 | /* losetup takes two argument:, loop_device and file */ |