diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-06 19:35:58 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-06 19:35:58 +0000 |
commit | 1a046d5f9dd627711a6d212963beae3354b68374 (patch) | |
tree | cc3673d343ba9805836ec6c0cf61ebc75961da3b | |
parent | 138ece09b5993debb472aa590999ae2221973f5a (diff) | |
download | busybox-1a046d5f9dd627711a6d212963beae3354b68374.tar.gz |
Bug 1110 reported that the LOOP_GET_STATUS ioctl apparently returnes non-zero
error messages, contrary to the documentation. Whatever. This patch from
zhaoway <zw@debian.org> looks safe enough.
-Erik
-rw-r--r-- | utility.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1507,7 +1507,7 @@ extern char *find_unused_loop_device(void) sprintf(dev, "/dev/loop%d", i); if (stat(dev, &statbuf) == 0 && S_ISBLK(statbuf.st_mode)) { if ((fd = open(dev, O_RDONLY)) >= 0) { - if (ioctl(fd, LOOP_GET_STATUS, &loopinfo) == -1) { + if (ioctl(fd, LOOP_GET_STATUS, &loopinfo) != 0) { if (errno == ENXIO) { /* probably free */ close(fd); return strdup(dev); |