summaryrefslogtreecommitdiffstats
path: root/source/smbd/dfree.c
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-05-12 01:20:17 +0000
committerAlexander Bokovoy <ab@samba.org>2003-05-12 01:20:17 +0000
commit4bf022ce9e45be85609426762ba2644ac2031326 (patch)
tree9d3de718528025c2ecaa515ecc2f06fbc844993f /source/smbd/dfree.c
parent4842de04cf2e1528e726dfad070dfe3a82f46fa2 (diff)
downloadsamba-4bf022ce9e45be85609426762ba2644ac2031326.tar.gz
samba-4bf022ce9e45be85609426762ba2644ac2031326.tar.xz
samba-4bf022ce9e45be85609426762ba2644ac2031326.zip
Add NT quota support. Patch from Stefan (metze) Metzemacher
1. Allows to change quota settings for shared mount points from Win2K and WinXP from Explorer properties tab 2. Disabled by default and when requested, will be probed and enabled only on Linux where it works 3. Was tested for approx. two weeks now on Linux by two independent QA teams, have not found any bugs so far Documentation to follow
Diffstat (limited to 'source/smbd/dfree.c')
-rw-r--r--source/smbd/dfree.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/smbd/dfree.c b/source/smbd/dfree.c
index 71b3f2bf772..f93cdf3791e 100644
--- a/source/smbd/dfree.c
+++ b/source/smbd/dfree.c
@@ -80,7 +80,7 @@ static SMB_BIG_UINT disk_free(const char *path, BOOL small_query,
dfree_command = lp_dfree_command();
if (dfree_command && *dfree_command) {
- char *p;
+ const char *p;
char **lines;
pstring syscmd;
@@ -93,15 +93,15 @@ static SMB_BIG_UINT disk_free(const char *path, BOOL small_query,
DEBUG (3, ("Read input from dfree, \"%s\"\n", line));
- *dsize = (SMB_BIG_UINT)strtoul(line, &p, 10);
- while (p && *p & isspace(*p))
+ *dsize = STR_TO_SMB_BIG_UINT(line, &p);
+ while (p && *p && isspace(*p))
p++;
if (p && *p)
- *dfree = (SMB_BIG_UINT)strtoul(p, &p, 10);
- while (p && *p & isspace(*p))
+ *dfree = STR_TO_SMB_BIG_UINT(p, &p);
+ while (p && *p && isspace(*p))
p++;
if (p && *p)
- *bsize = (SMB_BIG_UINT)strtoul(p, NULL, 10);
+ *bsize = STR_TO_SMB_BIG_UINT(p, NULL);
else
*bsize = 1024;
file_lines_free(lines);