1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-02-28 05:57:49 +03:00

o Remove hard coded path to /dev/device-mapper/control

This commit is contained in:
Joe Thornber 2001-11-21 15:49:45 +00:00
parent f2b6c424d6
commit 19bc4d3349

View File

@ -20,7 +20,7 @@
#include <linux/dm-ioctl.h>
#include <linux/kdev_t.h>
#define DEVICE_MAPPER_CONTROL "/dev/device-mapper/control"
#define DEV_DIR "/dev/"
#define ALIGNMENT sizeof(int)
/*
@ -354,7 +354,7 @@ int dm_task_run(struct dm_task *dmt)
return 0;
}
if ((fd = open(DEVICE_MAPPER_CONTROL, O_RDWR)) < 0) {
if ((fd = open(DEV_DIR DM_DIR "/control", O_RDWR)) < 0) {
log("Couldn't open device-mapper control device");
goto bad;
}