summaryrefslogtreecommitdiffstats
path: root/source3/lib/sysquotas.c
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2012-09-14 20:46:45 +0200
committerBjoern Jacke <bj@sernet.de>2012-09-15 02:18:16 +0200
commitb53c5bcf5bddb8a673d94870bdcfac426a8159ec (patch)
treee9a2fe8f611aec7f86ddf2c3b6999a2c5538d0bd /source3/lib/sysquotas.c
parent29c5780f8d0b7413136140db4ce133e97625ae31 (diff)
downloadsamba-b53c5bcf5bddb8a673d94870bdcfac426a8159ec.tar.gz
samba-b53c5bcf5bddb8a673d94870bdcfac426a8159ec.tar.xz
samba-b53c5bcf5bddb8a673d94870bdcfac426a8159ec.zip
quota: also log which fs type we found
Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Sat Sep 15 02:18:16 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/lib/sysquotas.c')
-rw-r--r--source3/lib/sysquotas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/sysquotas.c b/source3/lib/sysquotas.c
index c531666292d..97dd49de96b 100644
--- a/source3/lib/sysquotas.c
+++ b/source3/lib/sysquotas.c
@@ -406,7 +406,7 @@ int sys_get_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DI
}
errno = 0;
- DEBUG(10,("sys_get_quota() uid(%u, %u)\n", (unsigned)getuid(), (unsigned)geteuid()));
+ DEBUG(10,("sys_get_quota() uid(%u, %u), fs(%s)\n", (unsigned)getuid(), (unsigned)geteuid(), fs));
for (i=0;(fs && sys_quota_backends[i].name && sys_quota_backends[i].get_quota);i++) {
if (strcmp(fs,sys_quota_backends[i].name)==0) {