1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-04-29 18:50:41 +03:00

Fix return code from rm_link for vgmknodes.

This commit is contained in:
Alasdair Kergon 2004-09-22 13:38:37 +00:00
parent 56942c3f2a
commit be495a46bf
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,7 @@
Version 2.00.25 -
=====================================
Fix return code from rm_link for vgmknodes.
Make clvmd LV hash table thread-safe.
Version 2.00.24 - 16th September 2004
=====================================

View File

@ -65,10 +65,10 @@ static int _rm_dir(const char *dev_dir, const char *vg_name)
return 0;
}
log_very_verbose("Removing directory %s", vg_path);
if (is_empty_dir(vg_path))
if (is_empty_dir(vg_path)) {
log_very_verbose("Removing directory %s", vg_path);
rmdir(vg_path);
}
return 1;
}
@ -202,9 +202,9 @@ static int _rm_link(const char *dev_dir, const char *vg_name,
}
if (lstat(lv_path, &buf) || !S_ISLNK(buf.st_mode)) {
if (errno != ENOENT)
log_error("%s not symbolic link - not removing",
lv_path);
if (errno == ENOENT)
return 1;
log_error("%s not symbolic link - not removing", lv_path);
return 0;
}