diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-07-04 07:15:53 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-07-04 07:15:53 +0000 |
commit | debb471267960e56005a741817ebd227ecfc512a (patch) | |
tree | f8c3793c025aadf809d8a8b3126c05fcd442ec70 /source/smbd/noquotas.c | |
parent | cfd81e62c81dcb114e2c9f917a01168273bf75b0 (diff) | |
download | samba-debb471267960e56005a741817ebd227ecfc512a.tar.gz samba-debb471267960e56005a741817ebd227ecfc512a.tar.xz samba-debb471267960e56005a741817ebd227ecfc512a.zip |
The big character set handling changeover!
This commit gets rid of all our old codepage handling and replaces it with
iconv. All internal strings in Samba are now in "unix" charset, which may
be multi-byte. See internals.doc and my posting to samba-technical for
a more complete explanation.
Diffstat (limited to 'source/smbd/noquotas.c')
-rw-r--r-- | source/smbd/noquotas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/noquotas.c b/source/smbd/noquotas.c index 5c55bb47c8e..a6951d97fc5 100644 --- a/source/smbd/noquotas.c +++ b/source/smbd/noquotas.c @@ -25,7 +25,7 @@ * Needed for auto generation of proto.h. */ -BOOL disk_quotas(char *path,SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize) +BOOL disk_quotas(const char *path,SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize) { (*bsize) = 512; /* This value should be ignored */ |