From 890df538b3645d9310a3527513195773130d1d7f Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sat, 17 Feb 2007 01:51:13 +0100 Subject: [PATCH] [PATCH] Fixup file type recognition Signed-off-by: Jens Axboe --- init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.c b/init.c index f4a37401..9e41d55a 100644 --- a/init.c +++ b/init.c @@ -679,7 +679,7 @@ static int add_job(struct thread_data *td, const char *jobname, int job_add_num) td->io_ops->flags |= FIO_RAWIO; td->filetype = FIO_TYPE_FILE; - if (!stat(jobname, &sb)) { + if (td->filename && !lstat(td->filename, &sb)) { if (S_ISBLK(sb.st_mode)) td->filetype = FIO_TYPE_BD; else if (S_ISCHR(sb.st_mode)) -- 2.25.1