summaryrefslogtreecommitdiff
path: root/source3/web
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-03-28 12:51:17 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-04-05 02:39:08 +0200
commitb74fe73a6fb5862121235f18bc1dfe538e6ceaed (patch)
tree34a3f09ad3f0565a90fe13e735daecb44e779795 /source3/web
parentd166b798529dab4538054d0b68797c0cc17f34de (diff)
downloadsamba-b74fe73a6fb5862121235f18bc1dfe538e6ceaed.tar.gz
build: Remove sys_fopen wrapper
Diffstat (limited to 'source3/web')
-rw-r--r--source3/web/swat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c
index 0e17b015e94..1e676a5aecc 100644
--- a/source3/web/swat.c
+++ b/source3/web/swat.c
@@ -561,7 +561,7 @@ static int save_reload(int snum)
FILE *f;
struct stat st;
- f = sys_fopen(get_dyn_CONFIGFILE(),"w");
+ f = fopen(get_dyn_CONFIGFILE(),"w");
if (!f) {
printf(_("failed to open %s for writing"), get_dyn_CONFIGFILE());
printf("\n");