diff options
author | Paul Fox <pgf@brightstareng.com> | 2005-07-19 20:55:37 +0000 |
---|---|---|
committer | Paul Fox <pgf@brightstareng.com> | 2005-07-19 20:55:37 +0000 |
commit | 3f6f3174e9bd7671a97b88b90e50595a8c3c4231 (patch) | |
tree | 865c0e6afb3e16c87ae1953a640e7613a6169bec /libbb/loop.c | |
parent | 0a92bbf349c3a5f67182aca3932a7e29185ab3cf (diff) |
applying fix from:
0000068: mount limited to max 8 loop devices (patch provided)
(made minor wording change for config help message)
Diffstat (limited to 'libbb/loop.c')
-rw-r--r-- | libbb/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/loop.c b/libbb/loop.c index 8c3ad2ce0..19bbf3674 100644 --- a/libbb/loop.c +++ b/libbb/loop.c @@ -132,7 +132,7 @@ extern char *find_unused_loop_device(void) struct stat statbuf; struct loop_info loopinfo; - for (i = 0; i <= 7; i++) { + for (i = 0; i <= CONFIG_FEATURE_MOUNT_LOOP_MAX; i++) { sprintf(dev, LOOP_FORMAT, i); if (stat(dev, &statbuf) == 0 && S_ISBLK(statbuf.st_mode)) { if ((fd = open(dev, O_RDONLY)) >= 0) { |