diff options
author | Björn Jacke <bj@sernet.de> | 2012-09-14 20:46:45 +0200 |
---|---|---|
committer | Bjoern Jacke <bj@sernet.de> | 2012-09-15 02:18:16 +0200 |
commit | b53c5bcf5bddb8a673d94870bdcfac426a8159ec (patch) | |
tree | e9a2fe8f611aec7f86ddf2c3b6999a2c5538d0bd | |
parent | 29c5780f8d0b7413136140db4ce133e97625ae31 (diff) | |
download | samba-b53c5bcf5bddb8a673d94870bdcfac426a8159ec.tar.gz samba-b53c5bcf5bddb8a673d94870bdcfac426a8159ec.tar.bz2 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
-rw-r--r-- | source3/lib/sysquotas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/sysquotas.c b/source3/lib/sysquotas.c index c531666292..97dd49de96 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) { |