diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-01-15 01:53:25 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-01-15 01:53:25 +0000 |
commit | 869f24e0b1915ec8d3e14f8850417474200e687e (patch) | |
tree | 135d2f510af69f43f0d7bc661c1f42eef72382c2 /source3/smbd | |
parent | 586c6276ec78c9ee276e3d01ba017db14c30e0ce (diff) | |
download | samba-869f24e0b1915ec8d3e14f8850417474200e687e.tar.gz samba-869f24e0b1915ec8d3e14f8850417474200e687e.tar.bz2 samba-869f24e0b1915ec8d3e14f8850417474200e687e.zip |
locking.c proto.h shmem.c smb.h status.c :
Changed shm_ prefixes to smb_shm_ prefixes as shm_ is a POSIX.4
prefix. Updated fd code in FAST_SHARE_MODE code
to work with new fd indirection.
quotas.c: Fixed #ifdef not on position zero.
Jeremy. (jra@cygnus.com).
(This used to be commit c9a9d56642cc34369a42f48a28116e466240d303)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/quotas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/quotas.c b/source3/smbd/quotas.c index 3e22e26ba3..aec349dfd1 100644 --- a/source3/smbd/quotas.c +++ b/source3/smbd/quotas.c @@ -413,7 +413,7 @@ BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize) r= quotactl(path,Q_GETQUOTA,euser_id,(char *) &D); #else r=quotactl(Q_GETQUOTA, dev_disk, euser_id, &D); - #endif +#endif #endif /* Use softlimit to determine disk space, except when it has been exceeded */ |