daemon: Fix error message.

This commit is contained in:
Nikita A Menkovich
2011-05-20 11:26:09 +01:00
committed by Richard W.M. Jones
parent 0c133cf689
commit 08bc8e40ce

View File

@@ -117,7 +117,7 @@ vgchange (const char *vgchange_flag)
char *err;
int r = command (NULL, &err, "lvm", "vgchange", vgchange_flag, NULL);
if (r == -1) {
reply_with_error ("vgscan: %s", err);
reply_with_error ("vgchange: %s", err);
free (err);
return -1;
}