diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 12:51:17 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:08 +0200 |
commit | b74fe73a6fb5862121235f18bc1dfe538e6ceaed (patch) | |
tree | 34a3f09ad3f0565a90fe13e735daecb44e779795 /source3/smbd/quotas.c | |
parent | d166b798529dab4538054d0b68797c0cc17f34de (diff) | |
download | samba-b74fe73a6fb5862121235f18bc1dfe538e6ceaed.tar.gz samba-b74fe73a6fb5862121235f18bc1dfe538e6ceaed.tar.bz2 samba-b74fe73a6fb5862121235f18bc1dfe538e6ceaed.zip |
build: Remove sys_fopen wrapper
Diffstat (limited to 'source3/smbd/quotas.c')
-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 c2616157e4..caf02445dc 100644 --- a/source3/smbd/quotas.c +++ b/source3/smbd/quotas.c @@ -807,7 +807,7 @@ bool disk_quotas(const char *path, DEBUG(5,("disk_quotas: looking for path \"%s\" devno=%x\n", path, (unsigned int)devno)); #if defined(SUNOS5) - if ((fd = sys_fopen(MNTTAB, "r")) == NULL) { + if ((fd = fopen(MNTTAB, "r")) == NULL) { return false; } |