diff options
author | mpp <mpp@FreeBSD.org> | 2007-01-24 22:52:32 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 2007-01-24 22:52:32 +0000 |
commit | a6abba5b5e0e902b8ffef521a7ae00fe2efdc14a (patch) | |
tree | 8219e0296b45c1a9430b731e1e1ab6da9e3f98c3 /usr.sbin/quotaon | |
parent | 9799fcf93cf60f09104215fc4ecd696fcc117983 (diff) | |
download | FreeBSD-src-a6abba5b5e0e902b8ffef521a7ae00fe2efdc14a.zip FreeBSD-src-a6abba5b5e0e902b8ffef521a7ae00fe2efdc14a.tar.gz |
Display the name of the quota data file in verbose mode.
Diffstat (limited to 'usr.sbin/quotaon')
-rw-r--r-- | usr.sbin/quotaon/quotaon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/quotaon/quotaon.c b/usr.sbin/quotaon/quotaon.c index 4bdf982..7d0ec7f 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); } |