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/web | |
parent | d166b798529dab4538054d0b68797c0cc17f34de (diff) | |
download | samba-b74fe73a6fb5862121235f18bc1dfe538e6ceaed.tar.gz samba-b74fe73a6fb5862121235f18bc1dfe538e6ceaed.tar.bz2 samba-b74fe73a6fb5862121235f18bc1dfe538e6ceaed.zip |
build: Remove sys_fopen wrapper
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/swat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index 0e17b015e9..1e676a5aec 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"); |