diff options
author | Jeremy Allison <jra@samba.org> | 1998-11-03 02:25:28 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-11-03 02:25:28 +0000 |
commit | f09ab9b52251087a58af92ec753537ca34a970fc (patch) | |
tree | 8f94f9137e344849403eb1733133a09019caf8cc /source/include | |
parent | f55cc67dadc3c2ea3076755e308e3467083f1001 (diff) | |
download | samba-f09ab9b52251087a58af92ec753537ca34a970fc.tar.gz samba-f09ab9b52251087a58af92ec753537ca34a970fc.tar.xz samba-f09ab9b52251087a58af92ec753537ca34a970fc.zip |
Makefile.in configure configure.in include/proto.h smbd/noquotas.c smbd/quotas.c:
Added quotas patch for autoconf from Dejan Ilic <svedja@lysator.liu.se>.
printing/printing.c: Filenames with spaces patch from Allan Bjorklund <allan@umich.edu>
utils/nmblookup.c: Fix usage() function.
smbd/reply.c: Split out the security=server and security=domain checks into
check_server_security() and check_domain_security() to aid the
writing of the 'hack' appliance mode invented by John Schimmel.
Jeremy.
Diffstat (limited to 'source/include')
-rw-r--r-- | source/include/proto.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/source/include/proto.h b/source/include/proto.h index 190bf5f6157..472052c807c 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -2194,6 +2194,10 @@ int reply_negprot(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize); +/*The following definitions come from smbd/noquotas.c */ + +BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize); + /*The following definitions come from smbd/nttrans.c */ int reply_ntcreate_and_X(connection_struct *conn, @@ -2283,15 +2287,6 @@ void construct_reply_common(char *inbuf,char *outbuf); int chain_reply(char *inbuf,char *outbuf,int size,int bufsize); void smbd_process(void); -/*The following definitions come from smbd/quotas.c */ - -BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize); -BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize); -BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize); -BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize); -BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize); -BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize); - /*The following definitions come from smbd/reply.c */ int reply_special(char *inbuf,char *outbuf); |