From f2ca79a9bd2624cfcf2666eec467336ccc6881d8 Mon Sep 17 00:00:00 2001 From: yangsheng <yangsheng> Date: Thu, 4 Sep 2008 09:59:45 +0000 Subject: [PATCH] Branch b1_6 b=16875 i=Robert, johann Use single quotes around devices when building debugfs commands. --- lustre/utils/mkfs_lustre.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/utils/mkfs_lustre.c b/lustre/utils/mkfs_lustre.c index 07dd336203..9c62901d94 100644 --- a/lustre/utils/mkfs_lustre.c +++ b/lustre/utils/mkfs_lustre.c @@ -394,7 +394,7 @@ static int file_in_dev(char *file_name, char *dev_name) /* Construct debugfs command line. */ snprintf(debugfs_cmd, sizeof(debugfs_cmd), - "debugfs -c -R 'stat %s' %s 2>&1 | egrep '(Inode|unsupported)'", + "debugfs -c -R 'stat %s' '%s' 2>&1 | egrep '(Inode|unsupported)'", file_name, dev_name); fp = popen(debugfs_cmd, "r"); @@ -870,7 +870,7 @@ int read_local_files(struct mkfs_opts *mop) filesystem */ /* Construct debugfs command line. */ - snprintf(cmd, cmdsz, "debugfs -c -R 'dump /%s %s/mountdata' %s", + snprintf(cmd, cmdsz, "debugfs -c -R 'dump /%s %s/mountdata' '%s'", MOUNT_DATA_FILE, tmpdir, dev); ret = run_command(cmd, cmdsz); -- GitLab