diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-09-17 15:09:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:42 -0500 |
commit | 10e4a96b5399a7ecbc893d2493a9ceb3ec66c8ed (patch) | |
tree | db8ea6878aaac35edc2e18fb8b29bccbd48d212a /source3/utils | |
parent | 82110e77da8c67a2806d2baa7486c9a9b7cc9781 (diff) | |
download | samba-10e4a96b5399a7ecbc893d2493a9ceb3ec66c8ed.tar.gz samba-10e4a96b5399a7ecbc893d2493a9ceb3ec66c8ed.tar.bz2 samba-10e4a96b5399a7ecbc893d2493a9ceb3ec66c8ed.zip |
r2388: fix client quota support
for the client we need the windows path and for server we need unix path
metze
(This used to be commit 54fd28f5e7b70ce2b192c2037ce28da3fea9ef92)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbcquotas.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/utils/smbcquotas.c b/source3/utils/smbcquotas.c index 98d214706a..81f7dd42bb 100644 --- a/source3/utils/smbcquotas.c +++ b/source3/utils/smbcquotas.c @@ -236,8 +236,9 @@ static int do_quota(struct cli_state *cli, enum SMB_QUOTA_TYPE qtype, uint16 cmd } if (!cli_get_quota_handle(cli, "a_fnum)) { - d_printf("Failed to open \\%s %s.\n", - FAKE_FILE_NAME_QUOTA,cli_errstr(cli)); + d_printf("Quotas are not enabled on this share.\n"); + d_printf("Failed to open %s %s.\n", + FAKE_FILE_NAME_QUOTA_WIN32,cli_errstr(cli)); return -1; } |