From fd7b77628d10ab8e30adb344626665cd6ff61155 Mon Sep 17 00:00:00 2001 From: Mike Pritchard Date: Wed, 24 Jan 2007 22:52:32 +0000 Subject: [PATCH] Display the name of the quota data file in verbose mode. --- usr.sbin/quotaon/quotaon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/quotaon/quotaon.c b/usr.sbin/quotaon/quotaon.c index 4bdf98206491..7d0ec7fedc36 100644 --- a/usr.sbin/quotaon/quotaon.c +++ b/usr.sbin/quotaon/quotaon.c @@ -177,8 +177,8 @@ quotaonoff(fs, offmode, type, qfpathname) return (1); } if (vflag) - printf("%s: %s quotas turned on\n", fs->fs_file, - qfextension[type]); + printf("%s: %s quotas turned on with data file %s\n", + fs->fs_file, qfextension[type], qfpathname); return (0); }