diff options
author | Denis Vlasenko | 2006-10-08 17:54:47 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-08 17:54:47 +0000 |
commit | 7039a66b58706457c7423de60556e04545432943 (patch) | |
tree | a512daebc3674c819766664c8ea17d41ef7fef02 /libbb/loop.c | |
parent | 1385899416a4396385ad421ae1f532be7103738a (diff) | |
download | busybox-7039a66b58706457c7423de60556e04545432943.zip busybox-7039a66b58706457c7423de60556e04545432943.tar.gz |
correct largefile support, add comments about it.
Diffstat (limited to 'libbb/loop.c')
-rw-r--r-- | libbb/loop.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbb/loop.c b/libbb/loop.c index 1b296d9..14835ec 100644 --- a/libbb/loop.c +++ b/libbb/loop.c @@ -133,7 +133,9 @@ int set_loop(char **device, const char *file, unsigned long long offset) without using losetup manually is problematic.) */ } else if (strcmp(file,(char *)loopinfo.lo_file_name) - || offset!=loopinfo.lo_offset) rc = -1; + || offset != loopinfo.lo_offset) { + rc = -1; + } close(dfd); try_again: if (*device) break; |