1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-10 16:58:47 +03:00

Fix inverted logic on last checkin for pvremove

This commit is contained in:
Dave Wysochanski 2007-06-14 15:51:36 +00:00
parent 3df2c388b1
commit fcd444b4e1

View File

@ -43,7 +43,7 @@ static int pvremove_check(struct cmd_context *cmd, const char *name)
}
/* orphan ? */
if (!is_orphan(pv))
if (is_orphan(pv))
return 1;
/* Allow partial & exported VGs to be destroyed. */