Close bug 644: loop incrementing twice, skipping ever other device.

This commit is contained in:
Rob Landley 2006-01-22 23:17:18 +00:00
parent e927743bb0
commit b70ccd9509

View File

@ -98,7 +98,7 @@ int set_loop(char **device, const char *file, int offset)
/* Find a loop device. */
try=*device ? : dev;
for(i=0;rc;i++) {
sprintf(dev, LOOP_FORMAT, i++);
sprintf(dev, LOOP_FORMAT, i);
/* Ran out of block devices, return failure. */
if(stat(try, &statbuf) || !S_ISBLK(statbuf.st_mode)) {
rc=ENOENT;