Avoid using lstat, it isn't right.

Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
This commit is contained in:
Neil Brown 2005-06-14 06:30:03 +00:00
parent 98ce384920
commit 0bbc98b563
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
Changes Prior to this release
- Don't use 'lstat' to check for blockdevices, use stat.
Changes Prior to 1.11.0 release
- Fix embarassing bug which causes --add to always fail.

View File

@ -97,7 +97,7 @@ int open_mddev(char *dev, int autof)
return -1;
}
stb.st_mode = 0;
if (lstat(dev, &stb)==0 && ! S_ISBLK(stb.st_mode)) {
if (stat(dev, &stb)==0 && ! S_ISBLK(stb.st_mode)) {
fprintf(stderr, Name ": %s is not a block device.\n",
dev);
return -1;